summaryrefslogtreecommitdiffstats
path: root/themes/rusted/static/css/main.scss
diff options
context:
space:
mode:
Diffstat (limited to 'themes/rusted/static/css/main.scss')
-rw-r--r--themes/rusted/static/css/main.scss46
1 files changed, 0 insertions, 46 deletions
diff --git a/themes/rusted/static/css/main.scss b/themes/rusted/static/css/main.scss
deleted file mode 100644
index 40e1ed3..0000000
--- a/themes/rusted/static/css/main.scss
+++ /dev/null
@@ -1,46 +0,0 @@
-@charset "utf-8";
-
-
-// Our variables
-$base-font-family: 'Fira Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
-$base-font-size: 16px;
-$small-font-size: $base-font-size * 0.875;
-$base-line-height: 1.5;
-
-$spacing-unit: 30px;
-
-$text-color: #444;
-$background-color: #fdfdfd;
-$brand-color: #2a7ae2;
-
-$grey-colour: #828282;
-$grey-colour-light: lighten($grey-colour, 40%);
-$grey-colour-dark: darken($grey-colour, 25%);
-
-$on-palm: 600px;
-$on-laptop: 800px;
-
-
-
-// Using media queries with like this:
-// @include media-query($palm) {
-// .wrapper {
-// padding-right: $spacing-unit / 2;
-// padding-left: $spacing-unit / 2;
-// }
-// }
-@mixin media-query($device) {
- @media screen and (max-width: $device) {
- @content;
- }
-}
-
-
-
-// Import partials
-@import
- "bootstrap-overrides",
- "base",
- "layout",
- "homepage"
-;