44 lines
735 B
SCSS
44 lines
735 B
SCSS
/* Animations */
|
|
|
|
@-webkit-keyframes fadeIn {
|
|
from { opacity: 0.3; }
|
|
}
|
|
@-moz-keyframes fadeIn {
|
|
from { opacity: 0.3; }
|
|
}
|
|
@-ms-keyframes fadeIn {
|
|
from { opacity: 0.3; }
|
|
}
|
|
@-o-keyframes fadeIn {
|
|
from { opacity: 0.3; }
|
|
}
|
|
@keyframes fadeIn {
|
|
from { opacity: 0.3; }
|
|
}
|
|
|
|
@mixin animate($anim) {
|
|
-webkit-animation: $anim;
|
|
-moz-animation: $anim;
|
|
-ms-animation: $anim;
|
|
-o-animation: $anim;
|
|
animation: $anim;
|
|
}
|
|
|
|
.flicker {
|
|
@include animate(fadeIn 0.8s infinite alternate);
|
|
}
|
|
|
|
/* Fonts */
|
|
|
|
@import url('https://fonts.googleapis.com/css?family=Ubuntu:400,700&subset=latin-ext');
|
|
|
|
body, textarea, input, button {
|
|
font-size: 14px;
|
|
font-family: 'Ubuntu', sans-serif;
|
|
}
|
|
|
|
/* Common objects */
|
|
|
|
textarea {
|
|
resize: none;
|
|
} |