53 lines
949 B
Plaintext
Executable File
53 lines
949 B
Plaintext
Executable File
////////////////////////////////////////
|
|
////////////// - Imports - /////////////
|
|
////////////////////////////////////////
|
|
|
|
@import "constants";
|
|
|
|
////////////////////////////////////////
|
|
///////////// - Fade In - //////////////
|
|
////////////////////////////////////////
|
|
|
|
@fadein: fadein;
|
|
|
|
@keyframes @fadein {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////
|
|
///////////// - Fade Out - /////////////
|
|
////////////////////////////////////////
|
|
|
|
@fadeout: fadeout;
|
|
|
|
@keyframes @fadeout {
|
|
from {
|
|
opacity: 1;
|
|
}
|
|
|
|
to {
|
|
opacity: 2;
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////
|
|
///////////// - Fade Out - /////////////
|
|
////////////////////////////////////////
|
|
|
|
@rotation: rotation;
|
|
|
|
@keyframes rotation {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|