From cba66ff133ce65e33e6130fb5e5777598e2eef24 Mon Sep 17 00:00:00 2001
From: Jonas Leder <jonas@jonasled.de>
Date: Sat, 31 Jul 2021 20:42:12 +0200
Subject: [PATCH] remove loader css

---
 scss/_loader.scss | 66 -----------------------------------------------
 scss/style.scss   |  1 -
 2 files changed, 67 deletions(-)
 delete mode 100644 scss/_loader.scss

diff --git a/scss/_loader.scss b/scss/_loader.scss
deleted file mode 100644
index 95538f1..0000000
--- a/scss/_loader.scss
+++ /dev/null
@@ -1,66 +0,0 @@
-.loader {
-  width: 100%;
-  height: 100%;
-  position: absolute;
-  top: 0;
-  left: 0;
-  transition: visibility 0s, opacity 0.5s linear;
-  background-color: $back-color;
-
-  .loader-dots {
-    position: absolute;
-    top: 50%;
-    left: 50%;
-
-    .dots {
-      position: absolute;
-      padding: 10px;
-      border-radius: 50%;
-      background: $accent-color;
-      -webkit-animation: loader 1s ease-in-out 0s infinite;
-      animation: loader 1s ease-in-out 0s infinite;
-
-      &:nth-child(1) {
-        -webkit-animation-delay: 0s;
-        animation-delay: 0s;
-      }
-
-      &:nth-child(2) {
-        -webkit-animation-delay: 0.15s;
-        animation-delay: 0.15s;
-      }
-
-      &:nth-child(3) {
-        -webkit-animation-delay: 0.30s;
-        animation-delay: 0.30s;
-      }
-
-      &:nth-child(4) {
-        -webkit-animation-delay: 0.45s;
-        animation-delay: 0.45s;
-      }
-    }
-
-  }
-}
-
-@keyframes loader {
-  0% {
-    -webkit-transform: translateX(-100px);
-    transform: translateX(-100px);
-    opacity: 0;
-  }
-  50% {
-    opacity: 1;
-  }
-  100% {
-    -webkit-transform: translateX(100px);
-    transform: translateX(100px);
-    opacity: 0;
-  }
-}
-
-.stop-scrolling {
-  height: 100%;
-  overflow: hidden;
-}
\ No newline at end of file
diff --git a/scss/style.scss b/scss/style.scss
index 54897cc..4dec1dc 100644
--- a/scss/style.scss
+++ b/scss/style.scss
@@ -1,6 +1,5 @@
 @import "var";
 @import "colorMixer";
-@import "loader";
 @import "general";
 @import "menue";
 @import "normalize";
-- 
GitLab