Make / fade in
This commit is contained in:
parent
5babe2767b
commit
5bc19ea5c0
2 changed files with 13 additions and 2 deletions
|
@ -76,8 +76,7 @@
|
||||||
background: transparent;
|
background: transparent;
|
||||||
|
|
||||||
.navigation-bar--show-background & {
|
.navigation-bar--show-background & {
|
||||||
background: transparentize(colors.$background, 0.8);
|
background: transparentize(colors.$background, 0.05);
|
||||||
backdrop-filter: blur(10px);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -45,6 +45,18 @@
|
||||||
background: colors.$background;
|
background: colors.$background;
|
||||||
color: colors.$background-c;
|
color: colors.$background-c;
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
|
|
||||||
|
animation: 4s ease both fade-in;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes fade-in {
|
||||||
|
from {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
to {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.index-page__background {
|
.index-page__background {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue