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.
72 lines
1.0 KiB
72 lines
1.0 KiB
/* 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;
|
|
}
|
|
|
|
.features {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 50px;
|
|
}
|
|
|
|
.features > div {
|
|
width: 100%;
|
|
display: grid;
|
|
gap: 20px;
|
|
}
|
|
|
|
.features section {
|
|
display: flex;
|
|
gap: 20px;
|
|
align-items: center;
|
|
}
|
|
|
|
.features section > div {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.features section * {
|
|
margin: unset;
|
|
}
|
|
|
|
|
|
/* 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;
|
|
}
|
|
} |