You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
714 B
45 lines
714 B
3 years ago
|
/* layout */
|
||
|
.banner {
|
||
|
background-image: url('/img/banner.png');
|
||
|
height: 500px;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.banner h1 {
|
||
|
margin-top: -5rem;
|
||
|
font-size: 3em;
|
||
|
font-weight: 500;
|
||
|
}
|
||
|
|
||
|
|
||
|
/* page properties */
|
||
|
.description {
|
||
|
font-weight: normal;
|
||
|
text-align: center;
|
||
|
width: 75%;
|
||
|
margin: auto;
|
||
|
}
|
||
|
|
||
|
|
||
|
/* animation */
|
||
|
.indexanim {
|
||
|
-webkit-animation-name: indexanim;
|
||
|
animation-name: indexanim;
|
||
|
-webkit-animation-duration: 0.5s;
|
||
|
animation-duration: 0.5s;
|
||
|
margin-top: -10rem;
|
||
|
}
|
||
|
|
||
|
@keyframes indexanim {
|
||
|
0% {
|
||
|
margin-top: 0;
|
||
|
opacity: 0;
|
||
|
}
|
||
|
|
||
|
100% {
|
||
|
margin-top: -10rem;
|
||
|
opacity: 100;
|
||
|
}
|
||
|
}
|