summaryrefslogtreecommitdiff
path: root/sass/_animate.scss
diff options
context:
space:
mode:
authorxAlpharax <42233094+xAlpharax@users.noreply.github.com>2025-08-18 08:30:32 +0300
committerxAlpharax <42233094+xAlpharax@users.noreply.github.com>2025-08-18 08:30:32 +0300
commit91627c2d531a34ae032141af4e18bb1bd8619125 (patch)
treee4f6ce18ff5c19aff4179a9292f4893d86e92211 /sass/_animate.scss
parent93fd472f353d004ae399eb1d5619539a7efe30c5 (diff)
Pagespeed optimisation
Changes to be committed: modified: .gitignore modified: config.toml deleted: sass/_animate.scss modified: sass/style.scss modified: templates/404.html modified: templates/shortcodes/image.html
Diffstat (limited to 'sass/_animate.scss')
-rw-r--r--sass/_animate.scss232
1 files changed, 0 insertions, 232 deletions
diff --git a/sass/_animate.scss b/sass/_animate.scss
deleted file mode 100644
index 6b97612..0000000
--- a/sass/_animate.scss
+++ /dev/null
@@ -1,232 +0,0 @@
-@charset "UTF-8";
-
-/*!
- * animate.css -https://daneden.github.io/animate.css/
- * Version - 3.7.0
- * Licensed under the MIT license - http://opensource.org/licenses/MIT
- *
- * Copyright (c) 2018 Daniel Eden
- */
-
-@-webkit-keyframes bounceInRight {
- 0%,
- 60%,
- 75%,
- 90%,
- to {
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
- }
- 0% {
- opacity: 0;
- -webkit-transform: translate3d(3000px, 0, 0);
- transform: translate3d(3000px, 0, 0);
- }
- 60% {
- opacity: 1;
- -webkit-transform: translate3d(-25px, 0, 0);
- transform: translate3d(-25px, 0, 0);
- }
- 75% {
- -webkit-transform: translate3d(10px, 0, 0);
- transform: translate3d(10px, 0, 0);
- }
- 90% {
- -webkit-transform: translate3d(-5px, 0, 0);
- transform: translate3d(-5px, 0, 0);
- }
- to {
- -webkit-transform: translateZ(0);
- transform: translateZ(0);
- }
-}
-@keyframes bounceInRight {
- 0%,
- 60%,
- 75%,
- 90%,
- to {
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
- }
- 0% {
- opacity: 0;
- -webkit-transform: translate3d(3000px, 0, 0);
- transform: translate3d(3000px, 0, 0);
- }
- 60% {
- opacity: 1;
- -webkit-transform: translate3d(-25px, 0, 0);
- transform: translate3d(-25px, 0, 0);
- }
- 75% {
- -webkit-transform: translate3d(10px, 0, 0);
- transform: translate3d(10px, 0, 0);
- }
- 90% {
- -webkit-transform: translate3d(-5px, 0, 0);
- transform: translate3d(-5px, 0, 0);
- }
- to {
- -webkit-transform: translateZ(0);
- transform: translateZ(0);
- }
-}
-.bounceInRight {
- -webkit-animation-name: bounceInRight;
- animation-name: bounceInRight;
-}
-@-webkit-keyframes bounceOutRight {
- 20% {
- opacity: 1;
- -webkit-transform: translate3d(-20px, 0, 0);
- transform: translate3d(-20px, 0, 0);
- }
- to {
- opacity: 0;
- -webkit-transform: translate3d(2000px, 0, 0);
- transform: translate3d(2000px, 0, 0);
- }
-}
-@keyframes bounceOutRight {
- 20% {
- opacity: 1;
- -webkit-transform: translate3d(-20px, 0, 0);
- transform: translate3d(-20px, 0, 0);
- }
- to {
- opacity: 0;
- -webkit-transform: translate3d(2000px, 0, 0);
- transform: translate3d(2000px, 0, 0);
- }
-}
-.bounceOutRight {
- -webkit-animation-name: bounceOutRight;
- animation-name: bounceOutRight;
-}
-@-webkit-keyframes fadeIn {
- 0% {
- opacity: 0;
- }
- to {
- opacity: 1;
- }
-}
-@keyframes fadeIn {
- 0% {
- opacity: 0;
- }
- to {
- opacity: 1;
- }
-}
-.fadeIn {
- -webkit-animation-name: fadeIn;
- animation-name: fadeIn;
-}
-@-webkit-keyframes slideInUp {
- 0% {
- -webkit-transform: translate3d(0, 100%, 0);
- transform: translate3d(0, 100%, 0);
- visibility: visible;
- }
- to {
- -webkit-transform: translateZ(0);
- transform: translateZ(0);
- }
-}
-@keyframes slideInUp {
- 0% {
- -webkit-transform: translate3d(0, 100%, 0);
- transform: translate3d(0, 100%, 0);
- visibility: visible;
- }
- to {
- -webkit-transform: translateZ(0);
- transform: translateZ(0);
- }
-}
-.slideInUp {
- -webkit-animation-name: slideInUp;
- animation-name: slideInUp;
-}
-@-webkit-keyframes slideOutDown {
- 0% {
- -webkit-transform: translateZ(0);
- transform: translateZ(0);
- }
- to {
- visibility: hidden;
- -webkit-transform: translate3d(0, 100%, 0);
- transform: translate3d(0, 100%, 0);
- }
-}
-@keyframes slideOutDown {
- 0% {
- -webkit-transform: translateZ(0);
- transform: translateZ(0);
- }
- to {
- visibility: hidden;
- -webkit-transform: translate3d(0, 100%, 0);
- transform: translate3d(0, 100%, 0);
- }
-}
-.slideOutDown {
- -webkit-animation-name: slideOutDown;
- animation-name: slideOutDown;
-}
-.animated {
- -webkit-animation-duration: 1s;
- animation-duration: 1s;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
-}
-.animated.infinite {
- -webkit-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
-}
-.animated.delay-1s {
- -webkit-animation-delay: 1s;
- animation-delay: 1s;
-}
-.animated.delay-2s {
- -webkit-animation-delay: 2s;
- animation-delay: 2s;
-}
-.animated.delay-3s {
- -webkit-animation-delay: 3s;
- animation-delay: 3s;
-}
-.animated.delay-4s {
- -webkit-animation-delay: 4s;
- animation-delay: 4s;
-}
-.animated.delay-5s {
- -webkit-animation-delay: 5s;
- animation-delay: 5s;
-}
-.animated.fast {
- -webkit-animation-duration: 0.8s;
- animation-duration: 0.8s;
-}
-.animated.faster {
- -webkit-animation-duration: 0.5s;
- animation-duration: 0.5s;
-}
-.animated.slow {
- -webkit-animation-duration: 2s;
- animation-duration: 2s;
-}
-.animated.slower {
- -webkit-animation-duration: 3s;
- animation-duration: 3s;
-}
-@media (prefers-reduced-motion) {
- .animated {
- -webkit-animation: unset !important;
- animation: unset !important;
- -webkit-transition: none !important;
- transition: none !important;
- }
-}