aboutsummaryrefslogtreecommitdiffstats
path: root/htdocs/src/scss/base/_animations.scss
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2021-10-30 22:11:00 +0200
committerArmand Philippot <git@armandphilippot.com>2021-10-30 22:52:23 +0200
commit3a3baddad1c801d77dc398d2c6980f3c14f4a47c (patch)
tree9e06aef730504470111c010e53a1857f7b01ab83 /htdocs/src/scss/base/_animations.scss
parentc3045b163e74b42c0a0e71c646740c76d3bb5ba1 (diff)
chore: move htdocs to repo root
Diffstat (limited to 'htdocs/src/scss/base/_animations.scss')
-rw-r--r--htdocs/src/scss/base/_animations.scss89
1 files changed, 0 insertions, 89 deletions
diff --git a/htdocs/src/scss/base/_animations.scss b/htdocs/src/scss/base/_animations.scss
deleted file mode 100644
index a2df8ab..0000000
--- a/htdocs/src/scss/base/_animations.scss
+++ /dev/null
@@ -1,89 +0,0 @@
-@keyframes fadeIn {
- 0% {
- opacity: 0;
- }
-
- 100% {
- opacity: 1;
- visibility: visible;
- }
-}
-
-@keyframes fadeOut {
- 0% {
- opacity: 1;
- }
-
- 100% {
- opacity: 0;
- visibility: hidden;
- }
-}
-
-@keyframes slideInLeft {
- 0% {
- margin-left: -100%;
- }
-
- 100% {
- margin-left: 0;
- visibility: visible;
- }
-}
-
-@keyframes slideOutLeft {
- 0% {
- margin-left: 0;
- }
-
- 100% {
- margin-left: -100%;
- visibility: hidden;
- }
-}
-
-@keyframes slideInUp {
- 0% {
- margin-bottom: -100vh;
- }
-
- 100% {
- margin-bottom: 0;
- visibility: visible;
- }
-}
-
-@keyframes slideOutBottom {
- 0% {
- margin-bottom: 0;
- }
-
- 100% {
- margin-bottom: -100vh;
- visibility: hidden;
- }
-}
-
-.fade-in {
- animation: fadeIn 1s;
-}
-
-.fade-out {
- animation: fadeOut 1s;
-}
-
-.slide-in--left {
- animation: slideInLeft 0.8s;
-}
-
-.slide-out--left {
- animation: slideOutLeft 0.8s;
-}
-
-.slide-in--up {
- animation: slideInUp 1s;
-}
-
-.slide-out--bottom {
- animation: slideOutBottom 1s;
-}