1
0
Fork 0

Change background animation

This commit is contained in:
Moritz Ruth 2020-01-12 21:28:38 +01:00
parent 7c01cae9d1
commit badb9c3990
No known key found for this signature in database
GPG key ID: FE38A0B03AA331BA
4 changed files with 52 additions and 61 deletions

View file

@ -36,7 +36,7 @@
}
.index-page__background {
position: absolute;
position: fixed;
top: 0;
left: 0;
right: 0;
@ -45,6 +45,18 @@
height: 100vh;
z-index: -1;
animation: appear 2s 1.2s linear both;
}
@keyframes appear {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.index-page__socials {