File size: 1,192 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
.overlay {
height: 100%;
width: 100%;
position: fixed;
z-index: 40;
top: 0;
left: 0;
opacity: 0.95;
background-color: black;
overflow-x: hidden;
overflow-y: hidden;
transition: 0.5s;
animation: moveToBottom 0.7s ease-out;
a {
padding-bottom: 36px;
text-decoration: none;
font-size: 22px;
color: white;
display: block;
transition: 0.3s;
text-transform: capitalize;
}
@keyframes moveToBottom {
0% {
opacity: 0;
transform: translateX(-20rem);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
&__content {
position: absolute;
top: 17%;
width: 100%;
text-align: center;
margin-top: 30px;
margin: 0 auto;
display: flex;
flex-direction: column;
}
&__exit-icon {
color: white;
font-size: 32px;
position: absolute;
top: 2%;
left: 5%;
transition: all 0.3s ease;
&:active {
transform: scale(1.1);
}
}
&__signout {
color: white;
font-size: 22px;
text-align: center;
}
&__netflix {
width: 50px;
margin: 15px auto;
}
}
|