Browse code

Optimizations and extensions

Benjamin Roth authored on19/01/2017 13:34:46
Showing1 changed files
... ...
@@ -13,6 +13,11 @@ $color-text: #000000;
13 13
 $color-link: #878787;
14 14
 
15 15
 /**
16
+ * Gutters
17
+ */
18
+$gutter-default: 1 / 960 * 30 * 100%;
19
+
20
+/**
16 21
  * Font sizes and defaults
17 22
  */
18 23
 $font-size-default: 16px;
Browse code

Add load flag to decide whether to include equalize classes

Benjamin Roth authored on29/09/2015 11:22:04
Showing1 changed files
... ...
@@ -26,4 +26,5 @@ $line-height-default: 1.5;
26 26
 /**
27 27
  * Flags
28 28
  */
29
-$load-holy-grail-layout: true;
30 29
\ No newline at end of file
30
+$load-holy-grail-layout: true;
31
+$load-equalize: true;
31 32
\ No newline at end of file
Browse code

Use a more modular structure for better extensibility

Benjamin Roth authored on28/08/2015 08:55:03
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,29 @@
1
+/**
2
+ * Fonts
3
+ */
4
+$font-family: "Open-Sans", Arial, Helvetica, FreeSans, sans-serif;
5
+$font-family-alt: "Roboto", Arial, Helvetica, FreeSans, sans-serif;
6
+
7
+/**
8
+ * Colors
9
+ */
10
+$color-main: #082054;
11
+$color-alt: #ffffff;
12
+$color-text: #000000;
13
+$color-link: #878787;
14
+
15
+/**
16
+ * Font sizes and defaults
17
+ */
18
+$font-size-default: 16px;
19
+$font-size-mainnav: 18px / $font-size-default * 100%;
20
+
21
+$font-weight-default: 400;
22
+$font-weight-bold: 700;
23
+
24
+$line-height-default: 1.5;
25
+
26
+/**
27
+ * Flags
28
+ */
29
+$load-holy-grail-layout: true;
0 30
\ No newline at end of file