34 lines
598 B
Sass
34 lines
598 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
|
|
display: flex
|
|
justify-content: center
|
|
// width: 10vw
|
|
height: 100%
|
|
scale: 30%
|
|
animation: load 3s infinite cubic-bezier(0.81,-0.73, 0.32, 1.28)
|
|
|
|
// .svg
|
|
// scale: 10%
|
|
|
|
@keyframes load
|
|
0%
|
|
rotate: 0deg
|
|
100%
|
|
rotate: 180deg
|