aboutsummaryrefslogtreecommitdiffstats
path: root/htdocs/src/scss/base/_animations.scss
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2021-10-24 18:19:05 +0200
committerArmand Philippot <git@armandphilippot.com>2021-10-24 18:19:05 +0200
commit2716256c665e39b0e217dac1f3bb560a14c101e1 (patch)
tree3dabb8af334f9abe27742768bb77be672d628092 /htdocs/src/scss/base/_animations.scss
parent680a7ecd6046820c7495ac103495215b5ccaabd5 (diff)
chore: add styles
Diffstat (limited to 'htdocs/src/scss/base/_animations.scss')
-rw-r--r--htdocs/src/scss/base/_animations.scss89
1 files changed, 89 insertions, 0 deletions
diff --git a/htdocs/src/scss/base/_animations.scss b/htdocs/src/scss/base/_animations.scss
new file mode 100644
index 0000000..9ec8e9e
--- /dev/null
+++ b/htdocs/src/scss/base/_animations.scss
@@ -0,0 +1,89 @@
+@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: -100%;
+ }
+
+ 100% {
+ margin-bottom: 0;
+ visibility: visible;
+ }
+}
+
+@keyframes slideOutBottom {
+ 0% {
+ margin-bottom: 0;
+ }
+
+ 100% {
+ margin-bottom: -100%;
+ visibility: hidden;
+ }
+}
+
+.fade-in {
+ animation: fadeIn 0.8s;
+}
+
+.fade-out {
+ animation: fadeOut 0.8s;
+}
+
+.slide-in--left {
+ animation: slideInLeft 0.8s;
+}
+
+.slide-out--left {
+ animation: slideOutLeft 0.8s;
+}
+
+.slide-in--up {
+ animation: slideInUp 0.8s;
+}
+
+.slide-out--bottom {
+ animation: slideOutBottom 0.8s;
+}