persistentgrid 0.0.1.beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +5 -0
- data/lib/persistentgrid.rb +4 -0
- data/scss/pg/_helpers.scss +7 -0
- data/scss/pg/base/_all.scss +9 -0
- data/scss/pg/base/_behavior.scss +10 -0
- data/scss/pg/base/_helpers.scss +9 -0
- data/scss/pg/base/_settings.scss +10 -0
- data/scss/pg/base/baserules/_all.scss +8 -0
- data/scss/pg/base/baserules/_behavior.scss +125 -0
- data/scss/pg/base/baserules/_settings.scss +39 -0
- data/scss/pg/base/reset/_all.scss +9 -0
- data/scss/pg/base/reset/_behavior.scss +108 -0
- data/scss/pg/base/reset/_helpers.scss +7 -0
- data/scss/pg/base/reset/_settings.scss +27 -0
- data/scss/pg/base/reset/helpers/_all.scss +7 -0
- data/scss/pg/base/reset/helpers/_mixins.scss +395 -0
- data/scss/pg/base/typography/_all.scss +9 -0
- data/scss/pg/base/typography/_behavior.scss +31 -0
- data/scss/pg/base/typography/_helpers.scss +7 -0
- data/scss/pg/base/typography/_settings.scss +52 -0
- data/scss/pg/base/typography/helpers/_all.scss +8 -0
- data/scss/pg/base/typography/helpers/_functions.scss +160 -0
- data/scss/pg/base/typography/helpers/_mixins.scss +121 -0
- data/scss/pg/grid/_all.scss +9 -0
- data/scss/pg/grid/_behavior.scss +51 -0
- data/scss/pg/grid/_helpers.scss +8 -0
- data/scss/pg/grid/_settings.scss +48 -0
- data/scss/pg/grid/helpers/_functions.scss +140 -0
- data/scss/pg/grid/helpers/_mixins.scss +247 -0
- data/scss/pg/helpers/_all.scss +11 -0
- data/scss/pg/helpers/_colors.scss +163 -0
- data/scss/pg/helpers/_fonts.scss +21 -0
- data/scss/pg/helpers/_functions.scss +91 -0
- data/scss/pg/helpers/_mixins.scss +7 -0
- data/scss/pg/helpers/_settings.scss +11 -0
- data/scss/pg/helpers/fonts/_bree-serif.scss +27 -0
- data/scss/pg/helpers/fonts/_example.scss +47 -0
- data/scss/pg/helpers/fonts/_lato.scss +36 -0
- data/scss/pg/helpers/fonts/_monospace.scss +43 -0
- data/scss/pg/helpers/fonts/_raleway.scss +35 -0
- data/scss/pg/helpers/fonts/_righteous.scss +27 -0
- data/scss/pg/helpers/fonts/_roboto.scss +38 -0
- data/scss/pg/helpers/fonts/_sans-serif.scss +43 -0
- data/scss/pg/helpers/fonts/_serif.scss +43 -0
- data/scss/pg/helpers/fonts/_sofia-pro.scss +44 -0
- data/scss/pg/helpers/fonts/_varela-round.scss +28 -0
- data/scss/pg/helpers/fonts/icon-fonts/_fontawesome.scss +34 -0
- data/scss/pg/helpers/fonts/icon-fonts/_foundation-accessability.scss +76 -0
- data/scss/pg/helpers/fonts/icon-fonts/fontawesome/_bootstrap.scss +84 -0
- data/scss/pg/helpers/fonts/icon-fonts/fontawesome/_core.scss +129 -0
- data/scss/pg/helpers/fonts/icon-fonts/fontawesome/_extras.scss +93 -0
- data/scss/pg/helpers/fonts/icon-fonts/fontawesome/_icons.scss +381 -0
- data/scss/pg/helpers/fonts/icon-fonts/fontawesome/_mixins.scss +48 -0
- data/scss/pg/helpers/fonts/icon-fonts/fontawesome/_path.scss +14 -0
- data/scss/pg/helpers/fonts/icon-fonts/fontawesome/_variables.scss +734 -0
- data/scss/pg/helpers/fonts/icon-fonts/foundation-accessability/_settings.scss +28 -0
- data/scss/pg/helpers/library/_lists.scss +462 -0
- data/scss/pg/helpers/mixins/_all.scss +15 -0
- data/scss/pg/helpers/mixins/_anchors.scss +125 -0
- data/scss/pg/helpers/mixins/_baseline.scss +53 -0
- data/scss/pg/helpers/mixins/_breakpoints.scss +35 -0
- data/scss/pg/helpers/mixins/_content.scss +19 -0
- data/scss/pg/helpers/mixins/_css-triangle.scss +70 -0
- data/scss/pg/helpers/mixins/_elements.scss +106 -0
- data/scss/pg/helpers/mixins/_module.scss +327 -0
- data/scss/pg/helpers/mixins/_text.scss +87 -0
- data/scss/pg/helpers/mixins/_units.scss +67 -0
- data/scss/pg/helpers/settings/_all.scss +7 -0
- data/scss/pg/helpers/settings/_breakpoints.scss +21 -0
- data/scss/pg/modules/_all.scss +9 -0
- data/scss/pg/modules/_behavior.scss +13 -0
- data/scss/pg/modules/_helpers.scss +13 -0
- data/scss/pg/modules/_settings.scss +13 -0
- data/scss/pg/modules/accordions/_all.scss +8 -0
- data/scss/pg/modules/accordions/_behavior.scss +5 -0
- data/scss/pg/modules/accordions/_helpers.scss +5 -0
- data/scss/pg/modules/accordions/_settings.scss +4 -0
- data/scss/pg/modules/buttons/_all.scss +8 -0
- data/scss/pg/modules/buttons/_behavior.scss +89 -0
- data/scss/pg/modules/buttons/_helpers.scss +7 -0
- data/scss/pg/modules/buttons/_settings.scss +153 -0
- data/scss/pg/modules/buttons/helpers/_mixins.scss +33 -0
- data/scss/pg/modules/forms/_all.scss +8 -0
- data/scss/pg/modules/forms/_behavior.bak.scss +215 -0
- data/scss/pg/modules/forms/_behavior.scss +215 -0
- data/scss/pg/modules/forms/_helpers.scss +8 -0
- data/scss/pg/modules/forms/_settings.scss +10 -0
- data/scss/pg/modules/forms/helpers/_mixins.scss +94 -0
- data/scss/pg/modules/forms/settings/forms.scss +19 -0
- data/scss/pg/modules/forms/settings/input.scss +256 -0
- data/scss/pg/modules/forms/settings/labels.scss +101 -0
- data/scss/pg/modules/lists/_all.scss +9 -0
- data/scss/pg/modules/lists/_behavior.scss +99 -0
- data/scss/pg/modules/lists/_helpers.scss +11 -0
- data/scss/pg/modules/lists/_settings.scss +49 -0
- data/scss/pg/modules/tables/_all.scss +8 -0
- data/scss/pg/modules/tables/_behavior.scss +79 -0
- data/scss/pg/modules/tables/_helpers.scss +7 -0
- data/scss/pg/modules/tables/_settings.scss +69 -0
- data/scss/pg/modules/tables/helpers/_mixins.scss +9 -0
- data/scss/pg/modules/tabs/_all.scss +8 -0
- data/scss/pg/modules/tabs/_behavior.scss +77 -0
- data/scss/pg/modules/tabs/_helpers.scss +7 -0
- data/scss/pg/modules/tabs/_settings.scss +8 -0
- data/scss/pg/modules/tabs/helpers/_mixins.scss +4 -0
- data/scss/pg/skins/_crossinghippos.scss +8 -0
- data/scss/pg/skins/crossinghippos/_all.scss +9 -0
- data/scss/pg/skins/crossinghippos/_behavior.scss +10 -0
- data/scss/pg/skins/crossinghippos/_helpers.scss +8 -0
- data/scss/pg/skins/crossinghippos/_settings.scss +9 -0
- data/scss/pg/skins/crossinghippos/buttons/_all.scss +9 -0
- data/scss/pg/skins/crossinghippos/buttons/_behavior.scss +25 -0
- data/scss/pg/skins/crossinghippos/buttons/_helpers.scss +7 -0
- data/scss/pg/skins/crossinghippos/buttons/_settings.scss +50 -0
- data/scss/pg/skins/crossinghippos/forms/_all.scss +9 -0
- data/scss/pg/skins/crossinghippos/forms/_base.scss +7 -0
- data/scss/pg/skins/crossinghippos/forms/_behavior.scss +259 -0
- data/scss/pg/skins/crossinghippos/forms/_settings.scss +29 -0
- data/scss/pg/skins/crossinghippos/linkbar/_all.scss +8 -0
- data/scss/pg/skins/crossinghippos/linkbar/_behavior.scss +73 -0
- data/scss/pg/skins/crossinghippos/linkbar/_helpers.scss +5 -0
- data/scss/pg/skins/crossinghippos/linkbar/_settings.scss +27 -0
- data/templates/base/manifest.rb +15 -0
- data/templates/base/screen.scss +39 -0
- data/templates/grid/manifest.rb +15 -0
- data/templates/grid/screen.scss +36 -0
- data/templates/modules/manifest.rb +15 -0
- data/templates/modules/screen.scss +44 -0
- metadata +210 -0
@@ -0,0 +1,163 @@
|
|
1
|
+
// /**
|
2
|
+
// * copyright (c) 2013 crossing hippos - babs gösgens. all rights reserved.
|
3
|
+
// * licensed under gnu general public license version 2 or later; see license.txt
|
4
|
+
// */
|
5
|
+
@if $trace-imports { @debug 'imported'; }
|
6
|
+
|
7
|
+
// ==========================================================================
|
8
|
+
// colors
|
9
|
+
// ==========================================================================
|
10
|
+
|
11
|
+
$white : #fff !default;
|
12
|
+
$black : #000 !default;
|
13
|
+
$grey : #666 !default;
|
14
|
+
$red : #f00 !default;
|
15
|
+
$orange : #fa0 !default;
|
16
|
+
$yellow : #ff0 !default;
|
17
|
+
$green : #090 !default;
|
18
|
+
$blue : #009 !default;
|
19
|
+
$purple : #709 !default;
|
20
|
+
$violet : #90f !default;
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
$aliceblue: #f0f8ff;
|
25
|
+
$antiquewhite: #faebd7;
|
26
|
+
$aqua: #00ffff;
|
27
|
+
$aquamarine: #7fffd4;
|
28
|
+
$azure: #f0ffff;
|
29
|
+
$beige: #f5f5dc;
|
30
|
+
$bisque: #ffe4c4;
|
31
|
+
$black: #000000;
|
32
|
+
$blanchedalmond: #ffebcd;
|
33
|
+
$blue: #0000ff;
|
34
|
+
$blueviolet: #8a2be2;
|
35
|
+
$brown: #a52a2a;
|
36
|
+
$burlywood: #deb887;
|
37
|
+
$cadetblue: #5f9ea0;
|
38
|
+
$chartreuse: #7fff00;
|
39
|
+
$chocolate: #d2691e;
|
40
|
+
$coral: #ff7f50;
|
41
|
+
$cornflowerblue: #6495ed;
|
42
|
+
$cornsilk: #fff8dc;
|
43
|
+
$crimson: #dc143c;
|
44
|
+
$cyan: #00ffff;
|
45
|
+
$darkblue: #00008b;
|
46
|
+
$darkcyan: #008b8b;
|
47
|
+
$darkgoldenrod: #b8860b;
|
48
|
+
$darkgray: #a9a9a9;
|
49
|
+
$darkgreen: #006400;
|
50
|
+
$darkkhaki: #bdb76b;
|
51
|
+
$darkmagenta: #8b008b;
|
52
|
+
$darkolivegreen: #556b2f;
|
53
|
+
$darkorange: #ff8c00;
|
54
|
+
$darkorchid: #9932cc;
|
55
|
+
$darkred: #8b0000;
|
56
|
+
$darksalmon: #e9967a;
|
57
|
+
$darkseagreen: #8fbc8f;
|
58
|
+
$darkslateblue: #483d8b;
|
59
|
+
$darkslategray: #2f4f4f;
|
60
|
+
$darkturquoise: #00ced1;
|
61
|
+
$darkviolet: #9400d3;
|
62
|
+
$deeppink: #ff1493;
|
63
|
+
$deepskyblue: #00bfff;
|
64
|
+
$dimgray: #696969;
|
65
|
+
$dodgerblue: #1e90ff;
|
66
|
+
$firebrick: #b22222;
|
67
|
+
$floralwhite: #fffaf0;
|
68
|
+
$forestgreen: #228b22;
|
69
|
+
$fuchsia: #ff00ff;
|
70
|
+
$gainsboro: #dcdcdc;
|
71
|
+
$ghostwhite: #f8f8ff;
|
72
|
+
$gold: #ffd700;
|
73
|
+
$goldenrod: #daa520;
|
74
|
+
$gray: #808080;
|
75
|
+
$green: #008000;
|
76
|
+
$greenyellow: #adff2f;
|
77
|
+
$honeydew: #f0fff0;
|
78
|
+
$hotpink: #ff69b4;
|
79
|
+
$indianred : #cd5c5c;
|
80
|
+
$indigo : #4b0082;
|
81
|
+
$ivory: #fffff0;
|
82
|
+
$khaki: #f0e68c;
|
83
|
+
$lavender: #e6e6fa;
|
84
|
+
$lavenderblush: #fff0f5;
|
85
|
+
$lawngreen: #7cfc00;
|
86
|
+
$lemonchiffon: #fffacd;
|
87
|
+
$lightblue: #add8e6;
|
88
|
+
$lightcoral: #f08080;
|
89
|
+
$lightcyan: #e0ffff;
|
90
|
+
$lightgoldenrodyellow: #fafad2;
|
91
|
+
$lightgray: #d3d3d3;
|
92
|
+
$lightgreen: #90ee90;
|
93
|
+
$lightpink: #ffb6c1;
|
94
|
+
$lightsalmon: #ffa07a;
|
95
|
+
$lightseagreen: #20b2aa;
|
96
|
+
$lightskyblue: #87cefa;
|
97
|
+
$lightslategray: #778899;
|
98
|
+
$lightsteelblue: #b0c4de;
|
99
|
+
$lightyellow: #ffffe0;
|
100
|
+
$lime: #00ff00;
|
101
|
+
$limegreen: #32cd32;
|
102
|
+
$linen: #faf0e6;
|
103
|
+
$magenta: #ff00ff;
|
104
|
+
$maroon: #800000;
|
105
|
+
$mediumaquamarine: #66cdaa;
|
106
|
+
$mediumblue: #0000cd;
|
107
|
+
$mediumorchid: #ba55d3;
|
108
|
+
$mediumpurple: #9370db;
|
109
|
+
$mediumseagreen: #3cb371;
|
110
|
+
$mediumslateblue: #7b68ee;
|
111
|
+
$mediumspringgreen: #00fa9a;
|
112
|
+
$mediumturquoise: #48d1cc;
|
113
|
+
$mediumvioletred: #c71585;
|
114
|
+
$midnightblue: #191970;
|
115
|
+
$mintcream: #f5fffa;
|
116
|
+
$mistyrose: #ffe4e1;
|
117
|
+
$moccasin: #ffe4b5;
|
118
|
+
$navajowhite: #ffdead;
|
119
|
+
$navy: #000080;
|
120
|
+
$oldlace: #fdf5e6;
|
121
|
+
$olive: #808000;
|
122
|
+
$olivedrab: #6b8e23;
|
123
|
+
$orange: #ffa500;
|
124
|
+
$orangered: #ff4500;
|
125
|
+
$orchid: #da70d6;
|
126
|
+
$palegoldenrod: #eee8aa;
|
127
|
+
$palegreen: #98fb98;
|
128
|
+
$paleturquoise: #afeeee;
|
129
|
+
$palevioletred: #db7093;
|
130
|
+
$papayawhip: #ffefd5;
|
131
|
+
$peachpuff: #ffdab9;
|
132
|
+
$peru: #cd853f;
|
133
|
+
$pink: #ffc0cb;
|
134
|
+
$plum: #dda0dd;
|
135
|
+
$powderblue: #b0e0e6;
|
136
|
+
$purple: #800080;
|
137
|
+
$red: #ff0000;
|
138
|
+
$rosybrown: #bc8f8f;
|
139
|
+
$royalblue: #4169e1;
|
140
|
+
$saddlebrown: #8b4513;
|
141
|
+
$salmon: #fa8072;
|
142
|
+
$sandybrown: #f4a460;
|
143
|
+
$seagreen: #2e8b57;
|
144
|
+
$seashell: #fff5ee;
|
145
|
+
$sienna: #a0522d;
|
146
|
+
$silver: #c0c0c0;
|
147
|
+
$skyblue: #87ceeb;
|
148
|
+
$slateblue: #6a5acd;
|
149
|
+
$slategray: #708090;
|
150
|
+
$snow: #fffafa;
|
151
|
+
$springgreen: #00ff7f;
|
152
|
+
$steelblue: #4682b4;
|
153
|
+
$tan: #d2b48c;
|
154
|
+
$teal: #008080;
|
155
|
+
$thistle: #d8bfd8;
|
156
|
+
$tomato: #ff6347;
|
157
|
+
$turquoise: #40e0d0;
|
158
|
+
$violet: #ee82ee;
|
159
|
+
$wheat: #f5deb3;
|
160
|
+
$white: #ffffff;
|
161
|
+
$whitesmoke: #f5f5f5;
|
162
|
+
$yellow: #ffff00;
|
163
|
+
$yellowgreen: #9acd32;
|
@@ -0,0 +1,21 @@
|
|
1
|
+
// /**
|
2
|
+
// * Copyright (C) 2013 Crossing Hippos - Babs Gösgens. All rights reserved.
|
3
|
+
// * Licensed under GNU General Public License version 2 or later; see LICENSE.txt
|
4
|
+
// */
|
5
|
+
@if $trace-imports { @debug 'imported'; }
|
6
|
+
|
7
|
+
// System fonts
|
8
|
+
@import "fonts/serif";
|
9
|
+
@import "fonts/sans-serif";
|
10
|
+
@import "fonts/monospace";
|
11
|
+
|
12
|
+
// Google fonts
|
13
|
+
@import "fonts/bree-serif";
|
14
|
+
@import "fonts/lato";
|
15
|
+
@import "fonts/raleway";
|
16
|
+
@import "fonts/righteous";
|
17
|
+
@import "fonts/roboto";
|
18
|
+
@import "fonts/varela-round";
|
19
|
+
|
20
|
+
// Fontspring fonts
|
21
|
+
@import "fonts/sofia-pro";
|
@@ -0,0 +1,91 @@
|
|
1
|
+
// /**
|
2
|
+
// * Copyright (C) 2013 Crossing Hippos - Babs Gösgens. All rights reserved.
|
3
|
+
// * Licensed under GNU General Public License version 2 or later; see LICENSE.txt
|
4
|
+
// */
|
5
|
+
@if $trace-imports { @debug 'imported'; }
|
6
|
+
|
7
|
+
// Placeholder function
|
8
|
+
@function vertical-rhythm($lines)
|
9
|
+
{
|
10
|
+
@return rhythm($lines);
|
11
|
+
}
|
12
|
+
|
13
|
+
@function horizontal-rhythm($lines) {
|
14
|
+
@return horizontal-rhythm($lines);
|
15
|
+
}
|
16
|
+
|
17
|
+
// Consider this:
|
18
|
+
// $border-width: false;
|
19
|
+
// if($border-width, 2*$border-width, $border-width);
|
20
|
+
// the second expression will break the script because SASS is executing it regardless of whether the condition is true or false
|
21
|
+
// By wrapping it in the multiply function, this issue gets bypassed:
|
22
|
+
// if($border-width, multiply(2,$border-width), $border-width);
|
23
|
+
@function multiply($factor, $subject) {
|
24
|
+
@if $subject==0 {
|
25
|
+
@return 0;
|
26
|
+
}
|
27
|
+
@if $subject==false {
|
28
|
+
@return 0;
|
29
|
+
}
|
30
|
+
@if number($subject) {
|
31
|
+
@return $factor*$subject;
|
32
|
+
}
|
33
|
+
}
|
34
|
+
|
35
|
+
// @function establish-size($to-size,$from-size:$base-font-size) {
|
36
|
+
// @if not $relative-font-sizing and $from-size != $base-font-size {
|
37
|
+
// @warn "$relative-font-sizing is false but a relative font size was passed to adjust-font-size-to"; }
|
38
|
+
// $base-font-size: $font-unit * $to-size / $from-size;
|
39
|
+
|
40
|
+
// @return $base-font-size;
|
41
|
+
// }
|
42
|
+
|
43
|
+
// //* Calculate the optimal line-height */
|
44
|
+
// @function leading-in-px($base-font-size, $balance-over: false) {
|
45
|
+
|
46
|
+
// $dividend: $base-font-size / $base-line-height;
|
47
|
+
// $leading: $base-line-height;
|
48
|
+
|
49
|
+
// // For smaller font-sizes, for instance balance a font-size of 8px over two baselines of 24px in three (balance) lines resulting in 48/3=16px;
|
50
|
+
// @if $balance-over {
|
51
|
+
// $leading: 2 * $base-line-height / $balance-over;
|
52
|
+
// @return $leading;
|
53
|
+
// }
|
54
|
+
// @if $dividend<0.5 {
|
55
|
+
// $leading: 0.5 * $base-line-height;
|
56
|
+
// @return $leading;
|
57
|
+
// }
|
58
|
+
// @if $dividend>1 {
|
59
|
+
// $leading: ceil($dividend) * $base-line-height;
|
60
|
+
// @if ($leading - $base-font-size) < (2 * $min-line-padding) {
|
61
|
+
// $leading: $leading + $base-line-height;
|
62
|
+
// }
|
63
|
+
// @return $leading;
|
64
|
+
// }
|
65
|
+
// @else {
|
66
|
+
// @return $leading;
|
67
|
+
// }
|
68
|
+
// }
|
69
|
+
|
70
|
+
// @function px-to-rhythm($value) {
|
71
|
+
// @return $value/$base-line-height;
|
72
|
+
// }
|
73
|
+
|
74
|
+
// @function base-line-rhythm($base-lines: 1) {
|
75
|
+
// // @debug $base-lines;
|
76
|
+
// // @debug $base-line-height;
|
77
|
+
// @return ($base-lines * $base-line-height);
|
78
|
+
// }
|
79
|
+
|
80
|
+
@function px-to-em($target,$context)
|
81
|
+
{
|
82
|
+
@return $target/$context*1em;
|
83
|
+
}
|
84
|
+
@function px-to-percentage($target,$context)
|
85
|
+
{
|
86
|
+
@return $target/$context*100%;
|
87
|
+
}
|
88
|
+
@function px-to-rem($pixels)
|
89
|
+
{
|
90
|
+
@return $pixels/1px*0.1rem;
|
91
|
+
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
// /**
|
2
|
+
// * Copyright (C) 2013 Crossing Hippos - Babs Gösgens. All rights reserved.
|
3
|
+
// * Licensed under GNU General Public License version 2 or later; see LICENSE.txt
|
4
|
+
// */
|
5
|
+
@if $trace-imports { @debug 'imported'; }
|
6
|
+
|
7
|
+
@import "settings/all";
|
8
|
+
|
9
|
+
// Constants
|
10
|
+
$sides: top right bottom left;
|
11
|
+
$corners: top-left top-right bottom-left bottom-right;
|
@@ -0,0 +1,27 @@
|
|
1
|
+
// /**
|
2
|
+
// * Copyright (C) 2013 Crossing Hippos - Babs Gösgens. All rights reserved.
|
3
|
+
// * Licensed under GNU General Public License version 2 or later; see LICENSE.txt
|
4
|
+
// */
|
5
|
+
@if $trace-imports { @debug 'imported'; }
|
6
|
+
|
7
|
+
|
8
|
+
// Weight reference:
|
9
|
+
// 100 ultra-light
|
10
|
+
// 200 light
|
11
|
+
// 300 book
|
12
|
+
// 400 regular, or normal
|
13
|
+
// 500 medium
|
14
|
+
// 600 semi-bold
|
15
|
+
// 700 bold
|
16
|
+
// 800 extra-bold
|
17
|
+
// 900 heavy, or ultra-bold
|
18
|
+
|
19
|
+
|
20
|
+
// Bree Serif
|
21
|
+
// Available styles on Google Fonts: 400
|
22
|
+
$bree-serif-fontface : "Bree Serif";
|
23
|
+
$bree-serif-fallback : "serif";
|
24
|
+
$bree-serif-family : ($bree-serif-fontface, $bree-serif-fallback);
|
25
|
+
|
26
|
+
// style, variant, weight, family
|
27
|
+
$bree-serif-regular : normal, normal, 400, $bree-serif-family;
|
@@ -0,0 +1,47 @@
|
|
1
|
+
// /**
|
2
|
+
// * Copyright (C) 2013 Crossing Hippos - Babs Gösgens. All rights reserved.
|
3
|
+
// * Licensed under GNU General Public License version 2 or later; see LICENSE.txt
|
4
|
+
// */
|
5
|
+
@if $trace-imports { @debug 'imported'; }
|
6
|
+
|
7
|
+
|
8
|
+
// Use this file as a template for creating additional font files
|
9
|
+
// Replace the variable names accordingly
|
10
|
+
|
11
|
+
// Weight reference:
|
12
|
+
// 100 ultra-light
|
13
|
+
// 200 light
|
14
|
+
// 300 book
|
15
|
+
// 400 regular, or normal
|
16
|
+
// 500 medium
|
17
|
+
// 600 semi-bold
|
18
|
+
// 700 bold
|
19
|
+
// 800 extra-bold
|
20
|
+
// 900 heavy, or ultra-bold
|
21
|
+
|
22
|
+
|
23
|
+
// Example
|
24
|
+
// Available styles on Google Fonts: 100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic
|
25
|
+
$example-fontface : "Example";
|
26
|
+
$example-fallback : sans-serif;
|
27
|
+
$example-family : ($example-fontface, $example-fallback);
|
28
|
+
|
29
|
+
// style, variant, weight, family
|
30
|
+
$example-ultra-light : normal, normal, 100, $example-family;
|
31
|
+
$example-light : normal, normal, 200, $example-family;
|
32
|
+
$example-book : normal, normal, 300, $example-family;
|
33
|
+
$example-regular : normal, normal, 400, $example-family;
|
34
|
+
$example-medium : normal, normal, 500, $example-family;
|
35
|
+
$example-semi-bold : normal, normal, 600, $example-family;
|
36
|
+
$example-bold : normal, normal, 700, $example-family;
|
37
|
+
$example-extra-bold : normal, normal, 800, $example-family;
|
38
|
+
$example-heavy : normal, normal, 900, $example-family;
|
39
|
+
$example-ultra-light-italic : italic, normal, 100, $example-family;
|
40
|
+
$example-light-italic : italic, normal, 200, $example-family;
|
41
|
+
$example-book-italic : italic, normal, 300, $example-family;
|
42
|
+
$example-regular-italic : italic, normal, 400, $example-family;
|
43
|
+
$example-medium-italic : italic, normal, 500, $example-family;
|
44
|
+
$example-semi-bold-italic : italic, normal, 600, $example-family;
|
45
|
+
$example-bold-italic : italic, normal, 700, $example-family;
|
46
|
+
$example-extra-bold-italic : italic, normal, 800, $example-family;
|
47
|
+
$example-heavy-italic : italic, normal, 900, $example-family;
|
@@ -0,0 +1,36 @@
|
|
1
|
+
// /**
|
2
|
+
// * Copyright (C) 2013 Crossing Hippos - Babs Gösgens. All rights reserved.
|
3
|
+
// * Licensed under GNU General Public License version 2 or later; see LICENSE.txt
|
4
|
+
// */
|
5
|
+
@if $trace-imports { @debug 'imported'; }
|
6
|
+
|
7
|
+
// Weight reference:
|
8
|
+
// 100 ultra-light
|
9
|
+
// 200 light
|
10
|
+
// 300 book
|
11
|
+
// 400 regular, or normal
|
12
|
+
// 500 medium
|
13
|
+
// 600 semi-bold
|
14
|
+
// 700 bold
|
15
|
+
// 800 extra-bold
|
16
|
+
// 900 heavy, or ultra-bold
|
17
|
+
|
18
|
+
|
19
|
+
// Lato
|
20
|
+
// Available styles on Google Fonts: 100,300,400,700,900,100italic,300italic,400italic,700italic,900italic
|
21
|
+
|
22
|
+
$lato-fontface : "Lato";
|
23
|
+
$lato-fallback : sans-serif;
|
24
|
+
$lato-family : ($lato-fontface, $lato-fallback);
|
25
|
+
|
26
|
+
// style, variant, weight, family
|
27
|
+
$lato-ultra-light : normal, normal, 100, $lato-family;
|
28
|
+
$lato-book : normal, normal, 300, $lato-family;
|
29
|
+
$lato-regular : normal, normal, 400, $lato-family;
|
30
|
+
$lato-bold : normal, normal, 700, $lato-family;
|
31
|
+
$lato-heavy : normal, normal, 900, $lato-family;
|
32
|
+
$lato-ultra-light-italic : italic, normal, 100, $lato-family;
|
33
|
+
$lato-book-italic : italic, normal, 300, $lato-family;
|
34
|
+
$lato-regular-italic : italic, normal, 400, $lato-family;
|
35
|
+
$lato-bold-italic : italic, normal, 700, $lato-family;
|
36
|
+
$lato-heavy-italic : italic, normal, 900, $lato-family;
|
@@ -0,0 +1,43 @@
|
|
1
|
+
// /**
|
2
|
+
// * Copyright (C) 2013 Crossing Hippos - Babs Gösgens. All rights reserved.
|
3
|
+
// * Licensed under GNU General Public License version 2 or later; see LICENSE.txt
|
4
|
+
// */
|
5
|
+
@if $trace-imports { @debug 'imported'; }
|
6
|
+
|
7
|
+
|
8
|
+
// Weight reference:
|
9
|
+
// 100 ultra-light
|
10
|
+
// 200 light
|
11
|
+
// 300 book
|
12
|
+
// 400 regular, or normal
|
13
|
+
// 500 medium
|
14
|
+
// 600 semi-bold
|
15
|
+
// 700 bold
|
16
|
+
// 800 extra-bold
|
17
|
+
// 900 heavy, or ultra-bold
|
18
|
+
|
19
|
+
|
20
|
+
// Example
|
21
|
+
// Available styles on Google Fonts: 100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic
|
22
|
+
$monospace-fontface : monospace;
|
23
|
+
$monospace-family : $monospace-fontface;
|
24
|
+
|
25
|
+
// style, variant, weight, family
|
26
|
+
$monospace-ultra-light : normal, normal, 400, $monospace-family;
|
27
|
+
$monospace-light : normal, normal, 400, $monospace-family;
|
28
|
+
$monospace-book : normal, normal, 400, $monospace-family;
|
29
|
+
$monospace-regular : normal, normal, 400, $monospace-family;
|
30
|
+
$monospace-medium : normal, normal, 600, $monospace-family;
|
31
|
+
$monospace-semi-bold : normal, normal, 600, $monospace-family;
|
32
|
+
$monospace-bold : normal, normal, 600, $monospace-family;
|
33
|
+
$monospace-extra-bold : normal, normal, 600, $monospace-family;
|
34
|
+
$monospace-heavy : normal, normal, 600, $monospace-family;
|
35
|
+
$monospace-ultra-light-italic : italic, normal, 400, $monospace-family;
|
36
|
+
$monospace-light-italic : italic, normal, 400, $monospace-family;
|
37
|
+
$monospace-book-italic : italic, normal, 400, $monospace-family;
|
38
|
+
$monospace-regular-italic : italic, normal, 400, $monospace-family;
|
39
|
+
$monospace-medium-italic : italic, normal, 600, $monospace-family;
|
40
|
+
$monospace-semi-bold-italic : italic, normal, 600, $monospace-family;
|
41
|
+
$monospace-bold-italic : italic, normal, 600, $monospace-family;
|
42
|
+
$monospace-extra-bold-italic : italic, normal, 600, $monospace-family;
|
43
|
+
$monospace-heavy-italic : italic, normal, 600, $monospace-family;
|
@@ -0,0 +1,35 @@
|
|
1
|
+
// /**
|
2
|
+
// * Copyright (C) 2013 Crossing Hippos - Babs Gösgens. All rights reserved.
|
3
|
+
// * Licensed under GNU General Public License version 2 or later; see LICENSE.txt
|
4
|
+
// */
|
5
|
+
@if $trace-imports { @debug 'imported'; }
|
6
|
+
|
7
|
+
|
8
|
+
// Weight reference:
|
9
|
+
// 100 ultra-light
|
10
|
+
// 200 light
|
11
|
+
// 300 book
|
12
|
+
// 400 regular, or normal
|
13
|
+
// 500 medium
|
14
|
+
// 600 semi-bold
|
15
|
+
// 700 bold
|
16
|
+
// 800 extra-bold
|
17
|
+
// 900 heavy, or ultra-bold
|
18
|
+
|
19
|
+
|
20
|
+
// Raleway
|
21
|
+
// Available styles on Google Fonts: 100,200,300,400,500,600,700,800,900
|
22
|
+
$raleway-fontface : "Raleway";
|
23
|
+
$raleway-fallback : sans-serif;
|
24
|
+
$raleway-family : ($raleway-fontface, $raleway-fallback);
|
25
|
+
|
26
|
+
// style, variant, weight, family
|
27
|
+
$raleway-ultra-light : normal, normal, 100, $raleway-family;
|
28
|
+
$raleway-light : normal, normal, 200, $raleway-family;
|
29
|
+
$raleway-book : normal, normal, 300, $raleway-family;
|
30
|
+
$raleway-regular : normal, normal, 400, $raleway-family;
|
31
|
+
$raleway-medium : normal, normal, 500, $raleway-family;
|
32
|
+
$raleway-semi-bold : normal, normal, 600, $raleway-family;
|
33
|
+
$raleway-bold : normal, normal, 700, $raleway-family;
|
34
|
+
$raleway-extra-bold : normal, normal, 800, $raleway-family;
|
35
|
+
$raleway-heavy : normal, normal, 900, $raleway-family;
|
@@ -0,0 +1,27 @@
|
|
1
|
+
// /**
|
2
|
+
// * Copyright (C) 2013 Crossing Hippos - Babs Gösgens. All rights reserved.
|
3
|
+
// * Licensed under GNU General Public License version 2 or later; see LICENSE.txt
|
4
|
+
// */
|
5
|
+
@if $trace-imports { @debug 'imported'; }
|
6
|
+
|
7
|
+
|
8
|
+
// Weight reference:
|
9
|
+
// 100 ultra-light
|
10
|
+
// 200 light
|
11
|
+
// 300 book
|
12
|
+
// 400 regular, or normal
|
13
|
+
// 500 medium
|
14
|
+
// 600 semi-bold
|
15
|
+
// 700 bold
|
16
|
+
// 800 extra-bold
|
17
|
+
// 900 heavy, or ultra-bold
|
18
|
+
|
19
|
+
|
20
|
+
// Righteous
|
21
|
+
// Available styles on Google Fonts: 400
|
22
|
+
$righteous-fontface : "Righteous";
|
23
|
+
$righteous-fallback : "serif";
|
24
|
+
$righteous-family : ($righteous-fontface, $righteous-fallback);
|
25
|
+
|
26
|
+
// style, variant, weight, family
|
27
|
+
$righteous-regular : normal, normal, 400, $righteous-family;
|
@@ -0,0 +1,38 @@
|
|
1
|
+
// /**
|
2
|
+
// * Copyright (C) 2013 Crossing Hippos - Babs Gösgens. All rights reserved.
|
3
|
+
// * Licensed under GNU General Public License version 2 or later; see LICENSE.txt
|
4
|
+
// */
|
5
|
+
@if $trace-imports { @debug 'imported'; }
|
6
|
+
|
7
|
+
|
8
|
+
// Weight reference:
|
9
|
+
// 100 ultra-light
|
10
|
+
// 200 light
|
11
|
+
// 300 book
|
12
|
+
// 400 regular, or normal
|
13
|
+
// 500 medium
|
14
|
+
// 600 semi-bold
|
15
|
+
// 700 bold
|
16
|
+
// 800 extra-bold
|
17
|
+
// 900 heavy, or ultra-bold
|
18
|
+
|
19
|
+
|
20
|
+
// Roboto
|
21
|
+
// Available styles on Google Fonts: 100,100italic,300,300italic,400,400italic,500,500italic,700,700italic,900,900italic
|
22
|
+
$roboto-fontface : "Roboto";
|
23
|
+
$roboto-fallback : sans-serif;
|
24
|
+
$roboto-family : ($roboto-fontface, $roboto-fallback);
|
25
|
+
|
26
|
+
// style, variant, weight, family
|
27
|
+
$roboto-ultra-light : normal, normal, 100, $roboto-family;
|
28
|
+
$roboto-ultra-light-italic : italic, normal, 100, $roboto-family;
|
29
|
+
$roboto-book : normal, normal, 300, $roboto-family;
|
30
|
+
$roboto-book-italic : italic, normal, 300, $roboto-family;
|
31
|
+
$roboto-regular : normal, normal, 400, $roboto-family;
|
32
|
+
$roboto-regular-italic : italic, normal, 400, $roboto-family;
|
33
|
+
$roboto-medium : normal, normal, 500, $roboto-family;
|
34
|
+
$roboto-medium-italic : italic, normal, 500, $roboto-family;
|
35
|
+
$roboto-bold : normal, normal, 700, $roboto-family;
|
36
|
+
$roboto-bold-italic : italic, normal, 700, $roboto-family;
|
37
|
+
$roboto-heavy : normal, normal, 900, $roboto-family;
|
38
|
+
$roboto-heavy-italic : italic, normal, 900, $roboto-family;
|
@@ -0,0 +1,43 @@
|
|
1
|
+
// /**
|
2
|
+
// * Copyright (C) 2013 Crossing Hippos - Babs Gösgens. All rights reserved.
|
3
|
+
// * Licensed under GNU General Public License version 2 or later; see LICENSE.txt
|
4
|
+
// */
|
5
|
+
@if $trace-imports { @debug 'imported'; }
|
6
|
+
|
7
|
+
|
8
|
+
// Weight reference:
|
9
|
+
// 100 ultra-light
|
10
|
+
// 200 light
|
11
|
+
// 300 book
|
12
|
+
// 400 regular, or normal
|
13
|
+
// 500 medium
|
14
|
+
// 600 semi-bold
|
15
|
+
// 700 bold
|
16
|
+
// 800 extra-bold
|
17
|
+
// 900 heavy, or ultra-bold
|
18
|
+
|
19
|
+
|
20
|
+
// Example
|
21
|
+
// Available styles on Google Fonts: 100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic
|
22
|
+
$sans-serif-fontface : sans-serif;
|
23
|
+
$sans-serif-family : $sans-serif-fontface;
|
24
|
+
|
25
|
+
// style, variant, weight, family
|
26
|
+
$sans-serif-ultra-light : normal, normal, 400, $sans-serif-family;
|
27
|
+
$sans-serif-light : normal, normal, 400, $sans-serif-family;
|
28
|
+
$sans-serif-book : normal, normal, 400, $sans-serif-family;
|
29
|
+
$sans-serif-regular : normal, normal, 400, $sans-serif-family;
|
30
|
+
$sans-serif-medium : normal, normal, 600, $sans-serif-family;
|
31
|
+
$sans-serif-semi-bold : normal, normal, 600, $sans-serif-family;
|
32
|
+
$sans-serif-bold : normal, normal, 600, $sans-serif-family;
|
33
|
+
$sans-serif-extra-bold : normal, normal, 600, $sans-serif-family;
|
34
|
+
$sans-serif-heavy : normal, normal, 600, $sans-serif-family;
|
35
|
+
$sans-serif-ultra-light-italic : italic, normal, 400, $sans-serif-family;
|
36
|
+
$sans-serif-light-italic : italic, normal, 400, $sans-serif-family;
|
37
|
+
$sans-serif-book-italic : italic, normal, 400, $sans-serif-family;
|
38
|
+
$sans-serif-regular-italic : italic, normal, 400, $sans-serif-family;
|
39
|
+
$sans-serif-medium-italic : italic, normal, 600, $sans-serif-family;
|
40
|
+
$sans-serif-semi-bold-italic : italic, normal, 600, $sans-serif-family;
|
41
|
+
$sans-serif-bold-italic : italic, normal, 600, $sans-serif-family;
|
42
|
+
$sans-serif-extra-bold-italic : italic, normal, 600, $sans-serif-family;
|
43
|
+
$sans-serif-heavy-italic : italic, normal, 600, $sans-serif-family;
|
@@ -0,0 +1,43 @@
|
|
1
|
+
// /**
|
2
|
+
// * Copyright (C) 2013 Crossing Hippos - Babs Gösgens. All rights reserved.
|
3
|
+
// * Licensed under GNU General Public License version 2 or later; see LICENSE.txt
|
4
|
+
// */
|
5
|
+
@if $trace-imports { @debug 'imported'; }
|
6
|
+
|
7
|
+
|
8
|
+
// Weight reference:
|
9
|
+
// 100 ultra-light
|
10
|
+
// 200 light
|
11
|
+
// 300 book
|
12
|
+
// 400 regular, or normal
|
13
|
+
// 500 medium
|
14
|
+
// 600 semi-bold
|
15
|
+
// 700 bold
|
16
|
+
// 800 extra-bold
|
17
|
+
// 900 heavy, or ultra-bold
|
18
|
+
|
19
|
+
|
20
|
+
// Example
|
21
|
+
// Available styles on Google Fonts: 100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic
|
22
|
+
$serif-fontface : serif;
|
23
|
+
$serif-family : $serif-fontface;
|
24
|
+
|
25
|
+
// style, variant, weight, family
|
26
|
+
$serif-ultra-light : normal, normal, 400, $serif-family;
|
27
|
+
$serif-light : normal, normal, 400, $serif-family;
|
28
|
+
$serif-book : normal, normal, 400, $serif-family;
|
29
|
+
$serif-regular : normal, normal, 400, $serif-family;
|
30
|
+
$serif-medium : normal, normal, 600, $serif-family;
|
31
|
+
$serif-semi-bold : normal, normal, 600, $serif-family;
|
32
|
+
$serif-bold : normal, normal, 600, $serif-family;
|
33
|
+
$serif-extra-bold : normal, normal, 600, $serif-family;
|
34
|
+
$serif-heavy : normal, normal, 600, $serif-family;
|
35
|
+
$serif-ultra-light-italic : italic, normal, 400, $serif-family;
|
36
|
+
$serif-light-italic : italic, normal, 400, $serif-family;
|
37
|
+
$serif-book-italic : italic, normal, 400, $serif-family;
|
38
|
+
$serif-regular-italic : italic, normal, 400, $serif-family;
|
39
|
+
$serif-medium-italic : italic, normal, 600, $serif-family;
|
40
|
+
$serif-semi-bold-italic : italic, normal, 600, $serif-family;
|
41
|
+
$serif-bold-italic : italic, normal, 600, $serif-family;
|
42
|
+
$serif-extra-bold-italic : italic, normal, 600, $serif-family;
|
43
|
+
$serif-heavy-italic : italic, normal, 600, $serif-family;
|