PC styles done

This commit is contained in:
Schmelczer András 2019-12-28 20:51:43 +01:00
parent 98160edc72
commit 632a7703ff
49 changed files with 1545 additions and 1267 deletions

View file

@ -1,7 +1,7 @@
@import "../../style/vars";
@import "../../style/mixins";
.background {
#background {
position: absolute;
left: 0;
top: 0;
@ -18,17 +18,15 @@
top: 0;
width: 160px;
transition: transform $slow-transition-time;
transition: transform $slow-transition-time, opacity $slow-transition-time;
&.animated {
animation: fade-in 1s linear forwards;
@keyframes fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
animation: fade-in 1s linear;
@keyframes fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
}