piecss 0.1.0.alpha.01
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.
- checksums.yaml +7 -0
- data/README.md +7 -0
- data/lib/piecss.rb +6 -0
- data/sass/piecss/behavior.scss +11 -0
- data/sass/piecss/behavior/anchor.scss +30 -0
- data/sass/piecss/behavior/base.scss +4 -0
- data/sass/piecss/behavior/base/normalize.scss +458 -0
- data/sass/piecss/behavior/base/preset.scss +57 -0
- data/sass/piecss/behavior/form.scss +120 -0
- data/sass/piecss/behavior/grid.scss +4 -0
- data/sass/piecss/behavior/grid/layout.scss +170 -0
- data/sass/piecss/behavior/grid/rhythm.scss +54 -0
- data/sass/piecss/behavior/list.scss +189 -0
- data/sass/piecss/settings.scss +18 -0
- data/sass/piecss/settings/base.scss +177 -0
- data/sass/piecss/settings/breakpoint.scss +32 -0
- data/sass/piecss/settings/constants.scss +147 -0
- data/sass/piecss/settings/fonts.scss +31 -0
- data/sass/piecss/settings/fonts/_asap.scss +44 -0
- data/sass/piecss/settings/fonts/_bree-serif.scss +23 -0
- data/sass/piecss/settings/fonts/_example.scss +43 -0
- data/sass/piecss/settings/fonts/_lato.scss +32 -0
- data/sass/piecss/settings/fonts/_monospace.scss +39 -0
- data/sass/piecss/settings/fonts/_pt-sans.scss +40 -0
- data/sass/piecss/settings/fonts/_raleway.scss +31 -0
- data/sass/piecss/settings/fonts/_righteous.scss +23 -0
- data/sass/piecss/settings/fonts/_roboto.scss +34 -0
- data/sass/piecss/settings/fonts/_sans-serif.scss +39 -0
- data/sass/piecss/settings/fonts/_serif.scss +39 -0
- data/sass/piecss/settings/fonts/_sofia-pro.scss +40 -0
- data/sass/piecss/settings/fonts/_varela-round.scss +24 -0
- data/sass/piecss/settings/fonts/_verdana.scss +40 -0
- data/sass/piecss/settings/fonts/icon-fonts/_fontawesome.scss +33 -0
- data/sass/piecss/settings/fonts/icon-fonts/_foundation-accessability.scss +75 -0
- data/sass/piecss/settings/fonts/icon-fonts/fontawesome/_bootstrap.scss +84 -0
- data/sass/piecss/settings/fonts/icon-fonts/fontawesome/_core.scss +129 -0
- data/sass/piecss/settings/fonts/icon-fonts/fontawesome/_extras.scss +93 -0
- data/sass/piecss/settings/fonts/icon-fonts/fontawesome/_icons.scss +381 -0
- data/sass/piecss/settings/fonts/icon-fonts/fontawesome/_mixins.scss +48 -0
- data/sass/piecss/settings/fonts/icon-fonts/fontawesome/_path.scss +14 -0
- data/sass/piecss/settings/fonts/icon-fonts/fontawesome/_variables.scss +734 -0
- data/sass/piecss/settings/fonts/icon-fonts/foundation-accessability/_settings.scss +28 -0
- data/sass/piecss/settings/form.scss +664 -0
- data/sass/piecss/settings/grid.scss +157 -0
- data/sass/piecss/settings/list.scss +216 -0
- data/sass/piecss/utilities.scss +16 -0
- data/sass/piecss/utilities/README.md +105 -0
- data/sass/piecss/utilities/breakpoint.scss +46 -0
- data/sass/piecss/utilities/cache.scss +74 -0
- data/sass/piecss/utilities/elements.scss +182 -0
- data/sass/piecss/utilities/image.scss +58 -0
- data/sass/piecss/utilities/layout.scss +367 -0
- data/sass/piecss/utilities/list.scss +26 -0
- data/sass/piecss/utilities/miscellaneous.scss +260 -0
- data/sass/piecss/utilities/rhythm.scss +173 -0
- data/sass/piecss/utilities/sides.scss +376 -0
- data/sass/piecss/utilities/typography.scss +295 -0
- data/sass/piecss/utilities/units.scss +166 -0
- data/templates/project/_settings.scss +24 -0
- data/templates/project/examples.html +224 -0
- data/templates/project/manifest.rb +13 -0
- data/templates/project/screen.scss +96 -0
- metadata +133 -0
@@ -0,0 +1,23 @@
|
|
1
|
+
// Copyright (C) 2014 Babs Gösgens. Licensed under MIT; see LICENSE.txt
|
2
|
+
|
3
|
+
|
4
|
+
// Weight reference:
|
5
|
+
// 100 ultra-light
|
6
|
+
// 200 light
|
7
|
+
// 300 book
|
8
|
+
// 400 regular, or normal
|
9
|
+
// 500 medium
|
10
|
+
// 600 semi-bold
|
11
|
+
// 700 bold
|
12
|
+
// 800 extra-bold
|
13
|
+
// 900 heavy, or ultra-bold
|
14
|
+
|
15
|
+
|
16
|
+
// Bree Serif
|
17
|
+
// Available styles on Google Fonts: 400
|
18
|
+
$bree-serif-fontface : "Bree Serif";
|
19
|
+
$bree-serif-fallback : "serif";
|
20
|
+
$bree-serif-family : ($bree-serif-fontface, $bree-serif-fallback);
|
21
|
+
|
22
|
+
// style, variant, weight, family
|
23
|
+
$bree-serif-regular : normal normal 400 $bree-serif-family;
|
@@ -0,0 +1,43 @@
|
|
1
|
+
// Copyright (C) 2014 Babs Gösgens. Licensed under MIT; see LICENSE.txt
|
2
|
+
|
3
|
+
|
4
|
+
// Use this file as a template for creating additional font files
|
5
|
+
// Replace the variable names accordingly
|
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
|
+
// Example
|
20
|
+
// Available styles on Google Fonts: 100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic
|
21
|
+
$example-fontface : "Example";
|
22
|
+
$example-fallback : sans-serif;
|
23
|
+
$example-family : ($example-fontface, $example-fallback);
|
24
|
+
|
25
|
+
// style, variant, weight, family
|
26
|
+
$example-ultra-light : normal normal 100 $example-family;
|
27
|
+
$example-light : normal normal 200 $example-family;
|
28
|
+
$example-book : normal normal 300 $example-family;
|
29
|
+
$example-regular : normal normal 400 $example-family;
|
30
|
+
$example-medium : normal normal 500 $example-family;
|
31
|
+
$example-semi-bold : normal normal 600 $example-family;
|
32
|
+
$example-bold : normal normal 700 $example-family;
|
33
|
+
$example-extra-bold : normal normal 800 $example-family;
|
34
|
+
$example-heavy : normal normal 900 $example-family;
|
35
|
+
$example-ultra-light-italic : italic normal 100 $example-family;
|
36
|
+
$example-light-italic : italic normal 200 $example-family;
|
37
|
+
$example-book-italic : italic normal 300 $example-family;
|
38
|
+
$example-regular-italic : italic normal 400 $example-family;
|
39
|
+
$example-medium-italic : italic normal 500 $example-family;
|
40
|
+
$example-semi-bold-italic : italic normal 600 $example-family;
|
41
|
+
$example-bold-italic : italic normal 700 $example-family;
|
42
|
+
$example-extra-bold-italic : italic normal 800 $example-family;
|
43
|
+
$example-heavy-italic : italic normal 900 $example-family;
|
@@ -0,0 +1,32 @@
|
|
1
|
+
// Copyright (C) 2014 Babs Gösgens. Licensed under MIT; see LICENSE.txt
|
2
|
+
|
3
|
+
// Weight reference:
|
4
|
+
// 100 ultra-light
|
5
|
+
// 200 light
|
6
|
+
// 300 book
|
7
|
+
// 400 regular, or normal
|
8
|
+
// 500 medium
|
9
|
+
// 600 semi-bold
|
10
|
+
// 700 bold
|
11
|
+
// 800 extra-bold
|
12
|
+
// 900 heavy, or ultra-bold
|
13
|
+
|
14
|
+
|
15
|
+
// Lato
|
16
|
+
// Available styles on Google Fonts: 100,300,400,700,900,100italic,300italic,400italic,700italic,900italic
|
17
|
+
|
18
|
+
$lato-fontface : "Lato";
|
19
|
+
$lato-fallback : sans-serif;
|
20
|
+
$lato-family : ($lato-fontface, $lato-fallback);
|
21
|
+
|
22
|
+
// style, variant, weight, family
|
23
|
+
$lato-ultra-light : normal normal 100 $lato-family;
|
24
|
+
$lato-book : normal normal 300 $lato-family;
|
25
|
+
$lato-regular : normal normal 400 $lato-family;
|
26
|
+
$lato-bold : normal normal 700 $lato-family;
|
27
|
+
$lato-heavy : normal normal 900 $lato-family;
|
28
|
+
$lato-ultra-light-italic : italic normal 100 $lato-family;
|
29
|
+
$lato-book-italic : italic normal 300 $lato-family;
|
30
|
+
$lato-regular-italic : italic normal 400 $lato-family;
|
31
|
+
$lato-bold-italic : italic normal 700 $lato-family;
|
32
|
+
$lato-heavy-italic : italic normal 900 $lato-family;
|
@@ -0,0 +1,39 @@
|
|
1
|
+
// Copyright (C) 2014 Babs Gösgens. Licensed under MIT; see LICENSE.txt
|
2
|
+
|
3
|
+
|
4
|
+
// Weight reference:
|
5
|
+
// 100 ultra-light
|
6
|
+
// 200 light
|
7
|
+
// 300 book
|
8
|
+
// 400 regular, or normal
|
9
|
+
// 500 medium
|
10
|
+
// 600 semi-bold
|
11
|
+
// 700 bold
|
12
|
+
// 800 extra-bold
|
13
|
+
// 900 heavy, or ultra-bold
|
14
|
+
|
15
|
+
|
16
|
+
// Example
|
17
|
+
// Available styles on Google Fonts: 100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic
|
18
|
+
$monospace-fontface : monospace;
|
19
|
+
$monospace-family : $monospace-fontface;
|
20
|
+
|
21
|
+
// style, variant, weight, family
|
22
|
+
$monospace-ultra-light : normal normal 400 $monospace-family;
|
23
|
+
$monospace-light : normal normal 400 $monospace-family;
|
24
|
+
$monospace-book : normal normal 400 $monospace-family;
|
25
|
+
$monospace-regular : normal normal 400 $monospace-family;
|
26
|
+
$monospace-medium : normal normal 600 $monospace-family;
|
27
|
+
$monospace-semi-bold : normal normal 600 $monospace-family;
|
28
|
+
$monospace-bold : normal normal 600 $monospace-family;
|
29
|
+
$monospace-extra-bold : normal normal 600 $monospace-family;
|
30
|
+
$monospace-heavy : normal normal 600 $monospace-family;
|
31
|
+
$monospace-ultra-light-italic : italic normal 400 $monospace-family;
|
32
|
+
$monospace-light-italic : italic normal 400 $monospace-family;
|
33
|
+
$monospace-book-italic : italic normal 400 $monospace-family;
|
34
|
+
$monospace-regular-italic : italic normal 400 $monospace-family;
|
35
|
+
$monospace-medium-italic : italic normal 600 $monospace-family;
|
36
|
+
$monospace-semi-bold-italic : italic normal 600 $monospace-family;
|
37
|
+
$monospace-bold-italic : italic normal 600 $monospace-family;
|
38
|
+
$monospace-extra-bold-italic : italic normal 600 $monospace-family;
|
39
|
+
$monospace-heavy-italic : italic normal 600 $monospace-family;
|
@@ -0,0 +1,40 @@
|
|
1
|
+
// Copyright (C) 2014 Babs Gösgens. Licensed under MIT; see LICENSE.txt
|
2
|
+
|
3
|
+
|
4
|
+
// Weight reference:
|
5
|
+
// 100 ultra-light
|
6
|
+
// 200 light
|
7
|
+
// 300 book
|
8
|
+
// 400 regular, or normal
|
9
|
+
// 500 medium
|
10
|
+
// 600 semi-bold
|
11
|
+
// 700 bold
|
12
|
+
// 800 extra-bold
|
13
|
+
// 900 heavy, or ultra-bold
|
14
|
+
|
15
|
+
|
16
|
+
// Example
|
17
|
+
// Available styles on Google Fonts: 400,700,400italic,700italic
|
18
|
+
$pt-sans-fontface : "PT Sans";
|
19
|
+
$pt-sans-fallback : sans-serif;
|
20
|
+
$pt-sans-family : $pt-sans-fontface, $pt-sans-fallback;
|
21
|
+
|
22
|
+
// style, variant, weight, family
|
23
|
+
$pt-sans-ultra-light : normal normal 400 $pt-sans-family;
|
24
|
+
$pt-sans-light : normal normal 400 $pt-sans-family;
|
25
|
+
$pt-sans-book : normal normal 400 $pt-sans-family;
|
26
|
+
$pt-sans-regular : normal normal 400 $pt-sans-family;
|
27
|
+
$pt-sans-medium : normal normal 400 $pt-sans-family;
|
28
|
+
$pt-sans-semi-bold : normal normal 700 $pt-sans-family;
|
29
|
+
$pt-sans-bold : normal normal 700 $pt-sans-family;
|
30
|
+
$pt-sans-extra-bold : normal normal 700 $pt-sans-family;
|
31
|
+
$pt-sans-heavy : normal normal 700 $pt-sans-family;
|
32
|
+
$pt-sans-ultra-light-italic : italic normal 400 $pt-sans-family;
|
33
|
+
$pt-sans-light-italic : italic normal 400 $pt-sans-family;
|
34
|
+
$pt-sans-book-italic : italic normal 400 $pt-sans-family;
|
35
|
+
$pt-sans-regular-italic : italic normal 400 $pt-sans-family;
|
36
|
+
$pt-sans-medium-italic : italic normal 400 $pt-sans-family;
|
37
|
+
$pt-sans-semi-bold-italic : italic normal 700 $pt-sans-family;
|
38
|
+
$pt-sans-bold-italic : italic normal 700 $pt-sans-family;
|
39
|
+
$pt-sans-extra-bold-italic : italic normal 700 $pt-sans-family;
|
40
|
+
$pt-sans-heavy-italic : italic normal 700 $pt-sans-family;
|
@@ -0,0 +1,31 @@
|
|
1
|
+
// Copyright (C) 2014 Babs Gösgens. Licensed under MIT; see LICENSE.txt
|
2
|
+
|
3
|
+
|
4
|
+
// Weight reference:
|
5
|
+
// 100 ultra-light
|
6
|
+
// 200 light
|
7
|
+
// 300 book
|
8
|
+
// 400 regular, or normal
|
9
|
+
// 500 medium
|
10
|
+
// 600 semi-bold
|
11
|
+
// 700 bold
|
12
|
+
// 800 extra-bold
|
13
|
+
// 900 heavy, or ultra-bold
|
14
|
+
|
15
|
+
|
16
|
+
// Raleway
|
17
|
+
// Available styles on Google Fonts: 100,200,300,400,500,600,700,800,900
|
18
|
+
$raleway-fontface : "Raleway";
|
19
|
+
$raleway-fallback : sans-serif;
|
20
|
+
$raleway-family : ($raleway-fontface, $raleway-fallback);
|
21
|
+
|
22
|
+
// style, variant, weight, family
|
23
|
+
$raleway-ultra-light : normal normal 100 $raleway-family;
|
24
|
+
$raleway-light : normal normal 200 $raleway-family;
|
25
|
+
$raleway-book : normal normal 300 $raleway-family;
|
26
|
+
$raleway-regular : normal normal 400 $raleway-family;
|
27
|
+
$raleway-medium : normal normal 500 $raleway-family;
|
28
|
+
$raleway-semi-bold : normal normal 600 $raleway-family;
|
29
|
+
$raleway-bold : normal normal 700 $raleway-family;
|
30
|
+
$raleway-extra-bold : normal normal 800 $raleway-family;
|
31
|
+
$raleway-heavy : normal normal 900 $raleway-family;
|
@@ -0,0 +1,23 @@
|
|
1
|
+
// Copyright (C) 2014 Babs Gösgens. Licensed under MIT; see LICENSE.txt
|
2
|
+
|
3
|
+
|
4
|
+
// Weight reference:
|
5
|
+
// 100 ultra-light
|
6
|
+
// 200 light
|
7
|
+
// 300 book
|
8
|
+
// 400 regular, or normal
|
9
|
+
// 500 medium
|
10
|
+
// 600 semi-bold
|
11
|
+
// 700 bold
|
12
|
+
// 800 extra-bold
|
13
|
+
// 900 heavy, or ultra-bold
|
14
|
+
|
15
|
+
|
16
|
+
// Righteous
|
17
|
+
// Available styles on Google Fonts: 400
|
18
|
+
$righteous-fontface : "Righteous";
|
19
|
+
$righteous-fallback : "serif";
|
20
|
+
$righteous-family : ($righteous-fontface, $righteous-fallback);
|
21
|
+
|
22
|
+
// style, variant, weight, family
|
23
|
+
$righteous-regular : normal normal 400 $righteous-family;
|
@@ -0,0 +1,34 @@
|
|
1
|
+
// Copyright (C) 2014 Babs Gösgens. Licensed under MIT; see LICENSE.txt
|
2
|
+
|
3
|
+
|
4
|
+
// Weight reference:
|
5
|
+
// 100 ultra-light
|
6
|
+
// 200 light
|
7
|
+
// 300 book
|
8
|
+
// 400 regular, or normal
|
9
|
+
// 500 medium
|
10
|
+
// 600 semi-bold
|
11
|
+
// 700 bold
|
12
|
+
// 800 extra-bold
|
13
|
+
// 900 heavy, or ultra-bold
|
14
|
+
|
15
|
+
|
16
|
+
// Roboto
|
17
|
+
// Available styles on Google Fonts: 100,100italic,300,300italic,400,400italic,500,500italic,700,700italic,900,900italic
|
18
|
+
$roboto-fontface : "Roboto";
|
19
|
+
$roboto-fallback : sans-serif;
|
20
|
+
$roboto-family : ($roboto-fontface, $roboto-fallback);
|
21
|
+
|
22
|
+
// style, variant, weight, family
|
23
|
+
$roboto-ultra-light : normal normal 100 $roboto-family;
|
24
|
+
$roboto-ultra-light-italic : italic normal 100 $roboto-family;
|
25
|
+
$roboto-book : normal normal 300 $roboto-family;
|
26
|
+
$roboto-book-italic : italic normal 300 $roboto-family;
|
27
|
+
$roboto-regular : normal normal 400 $roboto-family;
|
28
|
+
$roboto-regular-italic : italic normal 400 $roboto-family;
|
29
|
+
$roboto-medium : normal normal 500 $roboto-family;
|
30
|
+
$roboto-medium-italic : italic normal 500 $roboto-family;
|
31
|
+
$roboto-bold : normal normal 700 $roboto-family;
|
32
|
+
$roboto-bold-italic : italic normal 700 $roboto-family;
|
33
|
+
$roboto-heavy : normal normal 900 $roboto-family;
|
34
|
+
$roboto-heavy-italic : italic normal 900 $roboto-family;
|
@@ -0,0 +1,39 @@
|
|
1
|
+
// Copyright (C) 2014 Babs Gösgens. Licensed under MIT; see LICENSE.txt
|
2
|
+
|
3
|
+
|
4
|
+
// Weight reference:
|
5
|
+
// 100 ultra-light
|
6
|
+
// 200 light
|
7
|
+
// 300 book
|
8
|
+
// 400 regular, or normal
|
9
|
+
// 500 medium
|
10
|
+
// 600 semi-bold
|
11
|
+
// 700 bold
|
12
|
+
// 800 extra-bold
|
13
|
+
// 900 heavy, or ultra-bold
|
14
|
+
|
15
|
+
|
16
|
+
// Example
|
17
|
+
// Available styles on Google Fonts: 100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic
|
18
|
+
$sans-serif-fontface : sans-serif;
|
19
|
+
$sans-serif-family : $sans-serif-fontface;
|
20
|
+
|
21
|
+
// style, variant, weight, family
|
22
|
+
$sans-serif-ultra-light : normal normal 400 $sans-serif-family;
|
23
|
+
$sans-serif-light : normal normal 400 $sans-serif-family;
|
24
|
+
$sans-serif-book : normal normal 400 $sans-serif-family;
|
25
|
+
$sans-serif-regular : normal normal 400 $sans-serif-family;
|
26
|
+
$sans-serif-medium : normal normal 600 $sans-serif-family;
|
27
|
+
$sans-serif-semi-bold : normal normal 600 $sans-serif-family;
|
28
|
+
$sans-serif-bold : normal normal 600 $sans-serif-family;
|
29
|
+
$sans-serif-extra-bold : normal normal 600 $sans-serif-family;
|
30
|
+
$sans-serif-heavy : normal normal 600 $sans-serif-family;
|
31
|
+
$sans-serif-ultra-light-italic : italic normal 400 $sans-serif-family;
|
32
|
+
$sans-serif-light-italic : italic normal 400 $sans-serif-family;
|
33
|
+
$sans-serif-book-italic : italic normal 400 $sans-serif-family;
|
34
|
+
$sans-serif-regular-italic : italic normal 400 $sans-serif-family;
|
35
|
+
$sans-serif-medium-italic : italic normal 600 $sans-serif-family;
|
36
|
+
$sans-serif-semi-bold-italic : italic normal 600 $sans-serif-family;
|
37
|
+
$sans-serif-bold-italic : italic normal 600 $sans-serif-family;
|
38
|
+
$sans-serif-extra-bold-italic : italic normal 600 $sans-serif-family;
|
39
|
+
$sans-serif-heavy-italic : italic normal, 600, $sans-serif-family;
|
@@ -0,0 +1,39 @@
|
|
1
|
+
// Copyright (C) 2014 Babs Gösgens. Licensed under MIT; see LICENSE.txt
|
2
|
+
|
3
|
+
|
4
|
+
// Weight reference:
|
5
|
+
// 100 ultra-light
|
6
|
+
// 200 light
|
7
|
+
// 300 book
|
8
|
+
// 400 regular, or normal
|
9
|
+
// 500 medium
|
10
|
+
// 600 semi-bold
|
11
|
+
// 700 bold
|
12
|
+
// 800 extra-bold
|
13
|
+
// 900 heavy, or ultra-bold
|
14
|
+
|
15
|
+
|
16
|
+
// Example
|
17
|
+
// Available styles on Google Fonts: 100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic
|
18
|
+
$serif-fontface : serif;
|
19
|
+
$serif-family : $serif-fontface;
|
20
|
+
|
21
|
+
// style, variant, weight, family
|
22
|
+
$serif-ultra-light : normal normal 400 $serif-family;
|
23
|
+
$serif-light : normal normal 400 $serif-family;
|
24
|
+
$serif-book : normal normal 400 $serif-family;
|
25
|
+
$serif-regular : normal normal 400 $serif-family;
|
26
|
+
$serif-medium : normal normal 600 $serif-family;
|
27
|
+
$serif-semi-bold : normal normal 600 $serif-family;
|
28
|
+
$serif-bold : normal normal 600 $serif-family;
|
29
|
+
$serif-extra-bold : normal normal 600 $serif-family;
|
30
|
+
$serif-heavy : normal normal 600 $serif-family;
|
31
|
+
$serif-ultra-light-italic : italic normal 400 $serif-family;
|
32
|
+
$serif-light-italic : italic normal 400 $serif-family;
|
33
|
+
$serif-book-italic : italic normal 400 $serif-family;
|
34
|
+
$serif-regular-italic : italic normal 400 $serif-family;
|
35
|
+
$serif-medium-italic : italic normal 600 $serif-family;
|
36
|
+
$serif-semi-bold-italic : italic normal 600 $serif-family;
|
37
|
+
$serif-bold-italic : italic normal 600 $serif-family;
|
38
|
+
$serif-extra-bold-italic : italic normal 600 $serif-family;
|
39
|
+
$serif-heavy-italic : italic normal 600 $serif-family;
|
@@ -0,0 +1,40 @@
|
|
1
|
+
// Copyright (C) 2014 Babs Gösgens. Licensed under MIT; see LICENSE.txt
|
2
|
+
|
3
|
+
|
4
|
+
// Weight reference:
|
5
|
+
// 100 ultra-light
|
6
|
+
// 200 light
|
7
|
+
// 300 book
|
8
|
+
// 400 regular, or normal
|
9
|
+
// 500 medium
|
10
|
+
// 600 semi-bold
|
11
|
+
// 700 bold
|
12
|
+
// 800 extra-bold
|
13
|
+
// 900 heavy, or ultra-bold
|
14
|
+
|
15
|
+
|
16
|
+
// Example
|
17
|
+
// Available styles on Google Fonts: 100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic
|
18
|
+
$sofia-pro-fontface : 'sofia_pro_lightregular';
|
19
|
+
$sofia-pro-fallback : sans-serif;
|
20
|
+
$sofia-pro-family : $sofia-pro-fontface, $sofia-pro-fallback;
|
21
|
+
|
22
|
+
// style, variant, weight, family
|
23
|
+
$sofia-pro-ultra-light : normal normal 200 $sofia-pro-family;
|
24
|
+
$sofia-pro-light : normal normal 200 $sofia-pro-family;
|
25
|
+
$sofia-pro-book : normal normal 200 $sofia-pro-family;
|
26
|
+
$sofia-pro-regular : normal normal 200 $sofia-pro-family;
|
27
|
+
$sofia-pro-medium : normal normal 200 $sofia-pro-family;
|
28
|
+
$sofia-pro-semi-bold : normal normal 200 $sofia-pro-family;
|
29
|
+
$sofia-pro-bold : normal normal 200 $sofia-pro-family;
|
30
|
+
$sofia-pro-extra-bold : normal normal 200 $sofia-pro-family;
|
31
|
+
$sofia-pro-heavy : normal normal 200 $sofia-pro-family;
|
32
|
+
$sofia-pro-ultra-light-italic : normal normal 200 $sofia-pro-family;
|
33
|
+
$sofia-pro-light-italic : normal normal 200 $sofia-pro-family;
|
34
|
+
$sofia-pro-book-italic : normal normal 200 $sofia-pro-family;
|
35
|
+
$sofia-pro-regular-italic : normal normal 200 $sofia-pro-family;
|
36
|
+
$sofia-pro-medium-italic : normal normal 200 $sofia-pro-family;
|
37
|
+
$sofia-pro-semi-bold-italic : normal normal 200 $sofia-pro-family;
|
38
|
+
$sofia-pro-bold-italic : normal normal 200 $sofia-pro-family;
|
39
|
+
$sofia-pro-extra-bold-italic : normal normal 200 $sofia-pro-family;
|
40
|
+
$sofia-pro-heavy-italic : normal normal 200 $sofia-pro-family;
|
@@ -0,0 +1,24 @@
|
|
1
|
+
// Copyright (C) 2014 Babs Gösgens. Licensed under MIT; see LICENSE.txt
|
2
|
+
|
3
|
+
|
4
|
+
// Weight reference:
|
5
|
+
// 100 ultra-light
|
6
|
+
// 200 light
|
7
|
+
// 300 book
|
8
|
+
// 400 regular, or normal
|
9
|
+
// 500 medium
|
10
|
+
// 600 semi-bold
|
11
|
+
// 700 bold
|
12
|
+
// 800 extra-bold
|
13
|
+
// 900 heavy, or ultra-bold
|
14
|
+
|
15
|
+
|
16
|
+
// Raleway
|
17
|
+
// Available styles on Google Fonts: 400
|
18
|
+
$varela-round-fontface : "Varela Round";
|
19
|
+
$varela-round-fallback : sans-serif;
|
20
|
+
$varela-round-family : ($varela-round-fontface, $varela-round-fallback);
|
21
|
+
|
22
|
+
// style, variant, weight, family
|
23
|
+
$varela-round-regular : normal normal 400 $varela-round-family;
|
24
|
+
$varela-round: $varela-round-regular;
|
@@ -0,0 +1,40 @@
|
|
1
|
+
// Copyright (C) 2014 Babs Gösgens. Licensed under MIT; see LICENSE.txt
|
2
|
+
|
3
|
+
|
4
|
+
// Weight reference:
|
5
|
+
// 100 ultra-light
|
6
|
+
// 200 light
|
7
|
+
// 300 book
|
8
|
+
// 400 regular, or normal
|
9
|
+
// 500 medium
|
10
|
+
// 600 semi-bold
|
11
|
+
// 700 bold
|
12
|
+
// 800 extra-bold
|
13
|
+
// 900 heavy, or ultra-bold
|
14
|
+
|
15
|
+
|
16
|
+
// Example
|
17
|
+
// Available styles on Google Fonts: 400,700,400italic,700italic
|
18
|
+
$verdana-fontface : "Verdana";
|
19
|
+
$verdana-fallback : sans-serif;
|
20
|
+
$verdana-family : $verdana-fontface, $verdana-fallback;
|
21
|
+
|
22
|
+
// style, variant, weight, family
|
23
|
+
$verdana-ultra-light : normal normal 400 $verdana-family;
|
24
|
+
$verdana-light : normal normal 400 $verdana-family;
|
25
|
+
$verdana-book : normal normal 400 $verdana-family;
|
26
|
+
$verdana-regular : normal normal 400 $verdana-family;
|
27
|
+
$verdana-medium : normal normal 400 $verdana-family;
|
28
|
+
$verdana-semi-bold : normal normal 700 $verdana-family;
|
29
|
+
$verdana-bold : normal normal 700 $verdana-family;
|
30
|
+
$verdana-extra-bold : normal normal 700 $verdana-family;
|
31
|
+
$verdana-heavy : normal normal 700 $verdana-family;
|
32
|
+
$verdana-ultra-light-italic : italic normal 400 $verdana-family;
|
33
|
+
$verdana-light-italic : italic normal 400 $verdana-family;
|
34
|
+
$verdana-book-italic : italic normal 400 $verdana-family;
|
35
|
+
$verdana-regular-italic : italic normal 400 $verdana-family;
|
36
|
+
$verdana-medium-italic : italic normal 400 $verdana-family;
|
37
|
+
$verdana-semi-bold-italic : italic normal 700 $verdana-family;
|
38
|
+
$verdana-bold-italic : italic normal 700 $verdana-family;
|
39
|
+
$verdana-extra-bold-italic : italic normal 700 $verdana-family;
|
40
|
+
$verdana-heavy-italic : italic normal 700 $verdana-family;
|