mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
3b6b5a085d
New standard - ALL .scss files are now indented 4 spaces, no tabs. I want to keep this *consistent* because it has been getting incredibly messy. This applies to all native Ghost sass - 3rd party files (normalize, typeplate, bourbon, breakpoint, etc) are not included. /cc @matthojo @erisds
40 lines
699 B
SCSS
40 lines
699 B
SCSS
/*
|
|
* Specific styles for re-usable animations in Ghost admin.
|
|
*
|
|
* Table of Contents:
|
|
*
|
|
*
|
|
*/
|
|
|
|
|
|
/* =============================================================================
|
|
General
|
|
============================================================================= */
|
|
|
|
@-webkit-keyframes off-canvas {
|
|
0% { left:0; }
|
|
100% { left:300px; }
|
|
}
|
|
@-moz-keyframes off-canvas {
|
|
0% { opacity: 0; }
|
|
100% { opacity: 1; }
|
|
}
|
|
@-o-keyframes off-canvas {
|
|
0% { opacity: 0; }
|
|
100% { opacity: 1; }
|
|
}
|
|
@keyframes off-canvas {
|
|
0% { opacity: 0; }
|
|
100% { opacity: 1; }
|
|
}
|
|
|
|
@include keyframes(fadeIn) {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|