diff options
Diffstat (limited to 'assets/css/base/animations.css')
| -rw-r--r-- | assets/css/base/animations.css | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/assets/css/base/animations.css b/assets/css/base/animations.css new file mode 100644 index 0000000..9bbe938 --- /dev/null +++ b/assets/css/base/animations.css @@ -0,0 +1,46 @@ +@keyframes headerShine { + 100% { + left: 150%; + } +} + +@keyframes fadeIn { + from { + opacity: 0; + } + to { + opacity: 1; + } +} + +@keyframes fadeOut { + from { + opacity: 1; + } + to { + opacity: 0; + } +} + +@keyframes zoomIn { + from { + opacity: 0; + transform: scale3d(0.3, 0.3, 0.3); + } + to { + opacity: 1; + } +} + +@keyframes zoomOut { + from { + opacity: 1; + } + 50% { + opacity: 0; + transform: scale3d(0.3, 0.3, 0.3); + } + to { + opacity: 0; + } +} |
