Can anyone tell me how I leave box-shadow
in the same key on the right and top on the left and bottom? link
HTML:
<divid="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>