You have some existing code from a Wordpress template that draws the shadow of an ellipse. A shadow radiates down in an ellipse. Only the lower half of the ellipse is visible, creating the effect of the lower shadow.
I just want to “flip” the “shadow effect” of the ellipse so that only the upper half of the shadow is visible. Seems simple. I am lost.
I believe the code fragment draws a radial shadow:
.fusion-separator.sep-shadow {
height: 1px;
overflow: visible;
border: none;
background: none;
background: linear-gradient(left, rgba(150, 150, 150, 0) 0%, rgba(150, 150, 150, 0) 15%, rgba(150, 150, 150, 0.65) 50%, rgba(150, 150, 150, 0) 85%, rgba(150, 150, 150, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#00000000', GradientType=1);
}
.fusion-separator.sep-shadow:after {
display: block;
margin-top: 10px;
height: 6px;
width: 100%;
content: '';
background: radial-gradient(ellipse at 50% -50%, rgba(0, 0, 0, 0.5) 0px, rgba(255, 255, 255, 0) 65%);
}
Live example on the site:
Existing radial shadow
