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.
33 lines
486 B
33 lines
486 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; }
|
|
}
|