44 lines
661 B
CSS
44 lines
661 B
CSS
@keyframes slideInLeft {
|
|
0% {
|
|
transform: translateX(-100%);
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
transform: translateX(0);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
#greeter {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
width: 100%;
|
|
position: relative;
|
|
}
|
|
|
|
#greeter-content {
|
|
padding: 5%;
|
|
margin: 5% 5% 5% 50%;
|
|
animation: 1s ease-out 0s 1 slideInLeft;
|
|
background: var(--paper);
|
|
}
|
|
|
|
@media (max-width: 950px){
|
|
#greeter-content {
|
|
margin: 5% 5% 5% 5%;
|
|
}
|
|
}
|
|
#greeter-content li {
|
|
font-size: 133%;
|
|
}
|
|
|
|
#greeter video {
|
|
opacity: 0.1;
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
object-fit: cover;
|
|
z-index: 0;
|
|
}
|