aboutsummaryrefslogtreecommitdiff
path: root/assets/_sass/base/_animations.scss
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2026-07-12 17:04:26 +0200
committerEugen Wissner <belka@caraus.de>2026-07-12 17:04:26 +0200
commit801e08e73624005ed498101ad616d987f70f8cdf (patch)
tree2e748bbe8380b7e4e392970b259217dafbbca689 /assets/_sass/base/_animations.scss
parent25800009ab67a9c9f438ad058ae764dfa060f420 (diff)
downloadflevum-801e08e73624005ed498101ad616d987f70f8cdf.tar.gz
Add original style sources and an SCSS compiler
Diffstat (limited to 'assets/_sass/base/_animations.scss')
-rw-r--r--assets/_sass/base/_animations.scss46
1 files changed, 46 insertions, 0 deletions
diff --git a/assets/_sass/base/_animations.scss b/assets/_sass/base/_animations.scss
new file mode 100644
index 0000000..2885970
--- /dev/null
+++ b/assets/_sass/base/_animations.scss
@@ -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;
+ }
+}