You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
605 B
43 lines
605 B
@import 'variables';
|
|
|
|
@keyframes fadeinOutD6 {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
50% {
|
|
transform: rotate(6deg);
|
|
}
|
|
100% {
|
|
transform: rotate(0deg);
|
|
}
|
|
}
|
|
|
|
@keyframes fadeinOutD13 {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
50% {
|
|
transform: rotate(13deg);
|
|
}
|
|
100% {
|
|
transform: rotate(0deg);
|
|
}
|
|
}
|
|
|
|
@keyframes colorchange {
|
|
0% { color: $white; }
|
|
25% { color: $gold; }
|
|
50% { color: $white; }
|
|
75% { color: $gold; }
|
|
100% { color: $white; }
|
|
}
|
|
|
|
@keyframes spin {
|
|
from {
|
|
transform:rotate(0deg)
|
|
}
|
|
|
|
to {
|
|
transform:rotate(360deg);
|
|
}
|
|
}
|