JSFiddle - React, Tailwind, and code Playground
by chopper
HTML
<hr class="sexy_line " />
CSS
.sexy_line {
margin-top:125px;
height: 1px;
border:none;
background: #cccccc;
width:100%;
background: -webkit-gradient(
linear,
0 0,
100% 0,
from(rgba(50,50,50,0.01)),
to(rgba(80,80,80,0.01)),
color-stop(.5,#c9c9c9)
);
background: -moz-linear-gradient(
left,
rgba(0,0,0,0.001) 0%,
rgba(201,201,201,1) 50%,
rgba(0,0,0,0.001) 100%
);
background:-ms-linear-gradient(left, hsla(0,0%,0%,0) 0%, hsla(0,0%,0%,.75) 50%, hsla(0,0%,0%,0) 100%);
background:-o-linear-gradient(left, hsla(0,0%,0%,0) 0%, hsla(0,0%,0%,.75) 50%, hsla(0,0%,0%,0) 100%);
background:linear-gradient(left, hsla(0,0%,0%,0) 0%, hsla(0,0%,0%,.75) 50%, hsla(0,0%,0%,0) 100%);
box-shadow: -5px 7px 13px 1px #dad2d2;
-moz-box-shadow: -5px 7px 13px 1px #dad2d2;
-webkit-box-shadow: -5px 7px 13px 1px #dad2d2;
}