aboutsummaryrefslogtreecommitdiff
path: root/assets/_sass/base/_animations.scss
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2026-07-17 14:26:52 +0200
committerEugen Wissner <belka@caraus.de>2026-07-17 14:26:52 +0200
commite844a70479915d1fba0336800b35c8c1022b61c6 (patch)
treecc9402a686380d5b14a43146c10cc3a57a55fd14 /assets/_sass/base/_animations.scss
parent8f954ab7c662e0c507c2328d5b2683fbd4c3a391 (diff)
downloadflevum-master.tar.gz
Convert preprocesser files to plain CSSHEADmaster
Diffstat (limited to 'assets/_sass/base/_animations.scss')
-rw-r--r--assets/_sass/base/_animations.scss46
1 files changed, 0 insertions, 46 deletions
diff --git a/assets/_sass/base/_animations.scss b/assets/_sass/base/_animations.scss
deleted file mode 100644
index 9bbe938..0000000
--- a/assets/_sass/base/_animations.scss
+++ /dev/null
@@ -1,46 +0,0 @@
-@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;
- }
-}