48 lines
586 B
48 lines
586 B
8 years ago
|
@import 'variables';
|
||
|
|
||
|
@keyframes fadeinOutD6 {
|
||
|
0% {
|
||
7 years ago
|
transform: rotate(0deg);
|
||
8 years ago
|
}
|
||
7 years ago
|
|
||
8 years ago
|
50% {
|
||
7 years ago
|
transform: rotate(6deg);
|
||
8 years ago
|
}
|
||
7 years ago
|
|
||
8 years ago
|
100% {
|
||
7 years ago
|
transform: rotate(0deg);
|
||
8 years ago
|
}
|
||
|
}
|
||
|
|
||
|
@keyframes fadeinOutD13 {
|
||
|
0% {
|
||
|
transform: rotate(0deg);
|
||
|
}
|
||
7 years ago
|
|
||
8 years ago
|
50% {
|
||
|
transform: rotate(13deg);
|
||
|
}
|
||
7 years ago
|
|
||
8 years ago
|
100% {
|
||
|
transform: rotate(0deg);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@keyframes colorchange {
|
||
7 years ago
|
0% { color: $white; }
|
||
|
25% { color: $gold; }
|
||
|
50% { color: $white; }
|
||
|
75% { color: $gold; }
|
||
8 years ago
|
100% { color: $white; }
|
||
7 years ago
|
}
|
||
|
|
||
|
@keyframes spin {
|
||
7 years ago
|
from {
|
||
|
transform: rotate(0deg);
|
||
|
}
|
||
|
|
||
|
to {
|
||
|
transform: rotate(360deg);
|
||
|
}
|
||
|
}
|