summaryrefslogtreecommitdiffstats
path: root/web/sass-files/sass/utils
diff options
context:
space:
mode:
Diffstat (limited to 'web/sass-files/sass/utils')
-rw-r--r--web/sass-files/sass/utils/_animations.scss19
-rw-r--r--web/sass-files/sass/utils/_functions.scss9
-rw-r--r--web/sass-files/sass/utils/_mixins.scss8
-rw-r--r--web/sass-files/sass/utils/_module.scss5
-rw-r--r--web/sass-files/sass/utils/_variables.scss13
5 files changed, 0 insertions, 54 deletions
diff --git a/web/sass-files/sass/utils/_animations.scss b/web/sass-files/sass/utils/_animations.scss
deleted file mode 100644
index 767e30847..000000000
--- a/web/sass-files/sass/utils/_animations.scss
+++ /dev/null
@@ -1,19 +0,0 @@
-@charset 'UTF-8';
-
-@-webkit-keyframes spin2 {
- from {
- -webkit-transform: rotate(0deg);
- }
- to {
- -webkit-transform: rotate(360deg);
- }
-}
-
-@keyframes spin {
- from {
- transform: scale(1) rotate(0deg);
- }
- to {
- transform: scale(1) rotate(360deg);
- }
-}
diff --git a/web/sass-files/sass/utils/_functions.scss b/web/sass-files/sass/utils/_functions.scss
deleted file mode 100644
index 9013920fa..000000000
--- a/web/sass-files/sass/utils/_functions.scss
+++ /dev/null
@@ -1,9 +0,0 @@
-@charset "UTF-8";
-
-@function em($pixels, $context: 14px) {
- @return #{$pixels/$context}em
-}
-
-%popover-box-shadow {
- @include box-shadow(rgba(black, .175) 1px -3px 12px);
-} \ No newline at end of file
diff --git a/web/sass-files/sass/utils/_mixins.scss b/web/sass-files/sass/utils/_mixins.scss
deleted file mode 100644
index 28723e1a5..000000000
--- a/web/sass-files/sass/utils/_mixins.scss
+++ /dev/null
@@ -1,8 +0,0 @@
-@charset 'UTF-8';
-
-@mixin file-icon($path) {
- background: #fff url($path);
- background-position: center;
- background-repeat: no-repeat;
- @include background-size(60px auto);
-}
diff --git a/web/sass-files/sass/utils/_module.scss b/web/sass-files/sass/utils/_module.scss
deleted file mode 100644
index e7f0c0c46..000000000
--- a/web/sass-files/sass/utils/_module.scss
+++ /dev/null
@@ -1,5 +0,0 @@
-// Only for combining all the files in this folder
-@import 'variables';
-@import 'animations';
-@import 'functions';
-@import 'mixins';
diff --git a/web/sass-files/sass/utils/_variables.scss b/web/sass-files/sass/utils/_variables.scss
deleted file mode 100644
index 065c37a17..000000000
--- a/web/sass-files/sass/utils/_variables.scss
+++ /dev/null
@@ -1,13 +0,0 @@
-@charset 'UTF-8';
-
-// Color Variables
-$color--primary: rgb(35, 137, 215);
-$color--primary--hover: darken($color--primary, 10%);
-$bg--gray: rgb(245, 245, 245);
-$bg--white: rgb(255, 255, 255);
-
-// Page Variables
-$border-gray: 1px solid #ddd;
-
-// Random variables
-$border-rad: 1px;