6
Can anyone tell me how I leave the box-shadow
in the same tone as the right and the top on the left and the bottom? http://prntscr.com/j3lwl7
HTML:
<div id="wrapper_login" class="fixed"></div>
CSS:
<style type="text/css">
body {
font-family: 'IBM Plex Mono', monospace;
font-size: 14px;
letter-spacing: 2px;
background: url(../images/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
}
.fixed {
position: fixed;
}
#wrapper_login {
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.5);
box-shadow: inset -120px 120px 120px #000;
}
</style>
That’s right, that fourth figure is known as
spread-radius
– hugocsl
very good, just what I needed
– goio