42 lines
No EOL
799 B
CSS
42 lines
No EOL
799 B
CSS
/****************
|
|
* AGE GATE CSS *
|
|
****************/
|
|
|
|
#age_gate_block {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 1040;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background-color: rgba(0, 0, 0, 0.4);
|
|
backdrop-filter: blur(20px);
|
|
|
|
transition: opacity 0.8s linear;
|
|
|
|
& div {
|
|
background-color: var(--bg_3);
|
|
border-radius: 1em;
|
|
|
|
padding: 1em;
|
|
|
|
width: 12em;
|
|
|
|
margin:0 auto;
|
|
display: table;
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
right:0;
|
|
top: 50%;
|
|
-webkit-transform:translateY(-50%);
|
|
-moz-transform:translateY(-50%);
|
|
-ms-transform:translateY(-50%);
|
|
-o-transform:translateY(-50%);
|
|
transform:translateY(-50%);
|
|
}
|
|
|
|
& p {
|
|
min-height: 5em;
|
|
}
|
|
} |