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, 46 insertions, 0 deletions
diff --git a/themes/rusted/static/css/main.scss b/themes/rusted/static/css/main.scss
new file mode 100644
index 0000000..40e1ed3
--- /dev/null
+++ b/themes/rusted/static/css/main.scss
@@ -0,0 +1,46 @@
+@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"
+;