Files
mostlymatter/webapp/sass/utils/_animations.scss
2016-03-17 05:42:38 +05:00

22 строки
301 B
SCSS

@charset 'UTF-8';
@keyframes spin {
from {
transform: scale(1) rotate(0deg);
}
to {
transform: scale(1) rotate(360deg);
}
}
@keyframes highlight {
from {
@include alpha-property(background, $yellow, .5);
}
to {
background: none;
}
}