Change background animation
This commit is contained in:
parent
7c01cae9d1
commit
badb9c3990
4 changed files with 52 additions and 61 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue