sass-flexi 0.4.alpha → 0.5.alpha
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 +4 -4
- data/stylesheets/bundle/_typography.scss +9 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
data.tar.gz:
|
4
|
-
metadata.gz:
|
3
|
+
data.tar.gz: de86cffdfdc912fbee4f7bb55bc43a3bb47779bc
|
4
|
+
metadata.gz: acfbbd5cc459edc4e3c01e35381bbcfc65f105ed
|
5
5
|
SHA512:
|
6
|
-
data.tar.gz:
|
7
|
-
metadata.gz:
|
6
|
+
data.tar.gz: 2880f15b51d7085d189dcd8003c9d66c8450b480a896b6a159a1029f82ee9d988364e80191366d8159109cc1e2ca5d1a998d3f4057b2c8d6f5d519b685e94ced
|
7
|
+
metadata.gz: 8fc080f8d0c73f45a0e06a4e9dc037f5ee97bc69b5ab753f122e09af0c4357ae32793f8b2e70196650ef4e8a3f73f6647af79f77de8f9653f8716146e0a6af49
|
@@ -45,9 +45,14 @@ $h5-mob : $font-size-mob / 1.5 ;
|
|
45
45
|
$h6-mob : $font-size-mob / 2.25 ;
|
46
46
|
|
47
47
|
|
48
|
-
//
|
48
|
+
// 3- Typography variables
|
49
|
+
// Body and headline font color
|
49
50
|
$text-color : #333 !default;
|
50
|
-
$head-color :
|
51
|
+
$head-color : darken($text-color, 80%) !default;
|
52
|
+
|
53
|
+
// font-family
|
54
|
+
$sans-serif : "Helvetica Neue",Helvetica, Arial, sans-serif !default;
|
55
|
+
$serif : Georgia, Times, "Times New Roman", serif !default;
|
51
56
|
|
52
57
|
|
53
58
|
// 3- Functions
|
@@ -73,7 +78,7 @@ $head-color : #111 !default;
|
|
73
78
|
// 4- placeholders
|
74
79
|
//---------------------------------------------------
|
75
80
|
%head-family{
|
76
|
-
font-family:
|
81
|
+
font-family: $sans-serif;
|
77
82
|
color: $head-color;
|
78
83
|
text-transform :capitalize;
|
79
84
|
text-shadow: 0 1px 1px rgba(255,255,255,0.6);
|
@@ -98,7 +103,7 @@ $head-color : #111 !default;
|
|
98
103
|
// body and headline font size and font-family
|
99
104
|
@mixin body-headline($font-size,$base:16){
|
100
105
|
body{
|
101
|
-
font-family:
|
106
|
+
font-family: $sans-serif
|
102
107
|
font-size: px($font-size);
|
103
108
|
font-size: rem($font-size,$base);
|
104
109
|
line-height: ($font-size *1.5) / $font-size ;
|