33 lines
521 B
Sass
33 lines
521 B
Sass
@import "./_variables"
|
|
|
|
.cover
|
|
position: fixed
|
|
padding: 0
|
|
margin: 0
|
|
top: 0
|
|
left: 0
|
|
width: 100%
|
|
height: 100%
|
|
opacity: 100%
|
|
z-index: 42069
|
|
background: $background-dark
|
|
color: $text-dark
|
|
&[data-theme="light"]
|
|
background: $background-light
|
|
color: $text-light
|
|
|
|
.center
|
|
|
|
width: 100%
|
|
height: 100%
|
|
scale: 50%
|
|
// animation: load 5s infinite ease
|
|
|
|
// .svg
|
|
// scale: 10%
|
|
|
|
@keyframes load
|
|
0%
|
|
rotate: 0deg
|
|
100%
|
|
rotate: 180deg
|