type-director 0.8
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 +207 -0
- data/lib/type-director.rb +30 -0
- data/stylesheets/_type-director.scss +10 -0
- data/stylesheets/type-director/_build-font-scale.scss +57 -0
- data/stylesheets/type-director/_build-scale.scss +41 -0
- data/stylesheets/type-director/_build-typography.scss +46 -0
- data/stylesheets/type-director/_map-deep-get.scss +6 -0
- data/stylesheets/type-director/_round.scss +8 -0
- data/stylesheets/type-director/_set-font-size.scss +136 -0
- data/templates/project/config.rb +27 -0
- data/templates/project/fonts/feather-webfont.eot +0 -0
- data/templates/project/fonts/feather-webfont.svg +158 -0
- data/templates/project/fonts/feather-webfont.ttf +0 -0
- data/templates/project/fonts/feather-webfont.woff +0 -0
- data/templates/project/manifest.rb +18 -0
- data/templates/project/sass/_icons.scss +572 -0
- data/templates/project/sass/_typography-config.scss +78 -0
- data/templates/project/sass/_typography.scss +84 -0
- data/templates/project/sass/main.scss +162 -0
- data/templates/project/stylesheets/main.css +1240 -0
- data/templates/project/type-specimen.html +147 -0
- metadata +108 -0
@@ -0,0 +1,78 @@
|
|
1
|
+
@import "type-director";
|
2
|
+
|
3
|
+
/******************************************************
|
4
|
+
* FONTS
|
5
|
+
******************************************************/
|
6
|
+
|
7
|
+
// Default font
|
8
|
+
|
9
|
+
$font-georgia: (
|
10
|
+
"family": unquote("Georgia, serif"),
|
11
|
+
"font-size-adjustment": 1.00,
|
12
|
+
"line-height-adjustment": 1.00,
|
13
|
+
"uppercase-adjustment": 0.82
|
14
|
+
);
|
15
|
+
|
16
|
+
// Additional fonts
|
17
|
+
|
18
|
+
$font-verdana: (
|
19
|
+
"family": unquote("Verdana, sans-serif"),
|
20
|
+
"font-size-adjustment": 0.89,
|
21
|
+
"line-height-adjustment": 0.94,
|
22
|
+
"uppercase-adjustment": 0.85
|
23
|
+
);
|
24
|
+
|
25
|
+
$font-feather: (
|
26
|
+
"family": unquote("'Feather'"),
|
27
|
+
"font-size-adjustment": 0.95,
|
28
|
+
"line-height-adjustment": 1.00
|
29
|
+
);
|
30
|
+
|
31
|
+
/******************************************************
|
32
|
+
* FONT ROLES
|
33
|
+
******************************************************/
|
34
|
+
|
35
|
+
// For simple projects I like to define font-copy, font-heading
|
36
|
+
// and font-icon roles, but this may not always be appropriate.
|
37
|
+
|
38
|
+
$font-copy: $font-georgia;
|
39
|
+
$font-copy-weight: normal;
|
40
|
+
|
41
|
+
$font-heading: $font-verdana;
|
42
|
+
$font-heading-weight: bold;
|
43
|
+
|
44
|
+
$font-icon: $font-feather;
|
45
|
+
$font-icon-weight: normal;
|
46
|
+
|
47
|
+
/******************************************************
|
48
|
+
* TYPOGRAPHY CONFIG
|
49
|
+
******************************************************/
|
50
|
+
|
51
|
+
$typography: td-build-typography((
|
52
|
+
|
53
|
+
// Define your font scales and their constraints.
|
54
|
+
"scales": (
|
55
|
+
|
56
|
+
// Phone sizes
|
57
|
+
"default": (
|
58
|
+
"base-font-size": 16px,
|
59
|
+
"base-line-height": 1.5,
|
60
|
+
"max-font-size": 28px,
|
61
|
+
"max-line-height": 1.35
|
62
|
+
),
|
63
|
+
|
64
|
+
// Tablet sizes and larger
|
65
|
+
"tablet": (
|
66
|
+
"media-query": "screen and (min-width: 768px)",
|
67
|
+
"base-font-size": 18px,
|
68
|
+
"base-line-height": 1.6,
|
69
|
+
"max-font-size": 42px,
|
70
|
+
"max-line-height": 1.25
|
71
|
+
)
|
72
|
+
),
|
73
|
+
|
74
|
+
// Other than the base, how many sizes do you need?
|
75
|
+
"numb-smaller-sizes": 1,
|
76
|
+
"numb-larger-sizes": 4
|
77
|
+
));
|
78
|
+
|
@@ -0,0 +1,84 @@
|
|
1
|
+
@import "typography-config";
|
2
|
+
|
3
|
+
/******************************************************
|
4
|
+
* Typography
|
5
|
+
******************************************************/
|
6
|
+
|
7
|
+
$text-color-primary: rgba(#000000, 0.9);
|
8
|
+
$text-color-secondary: rgba(#000000, 0.5);
|
9
|
+
$text-color-tertiary: rgba(#000000, 0.35);
|
10
|
+
$normal-margin: 12px;
|
11
|
+
|
12
|
+
body {
|
13
|
+
@include td-set-responsive-font-size($font-copy, 0);
|
14
|
+
font-weight: $font-copy-weight;
|
15
|
+
color: $text-color-primary;
|
16
|
+
}
|
17
|
+
|
18
|
+
.h1, .h2, .h3, .h4, .h5, .h6 {
|
19
|
+
font-weight: $font-heading-weight;
|
20
|
+
}
|
21
|
+
|
22
|
+
.h1 {
|
23
|
+
@include td-set-responsive-font-size($font-heading, 4);
|
24
|
+
}
|
25
|
+
|
26
|
+
.h2 {
|
27
|
+
@include td-set-responsive-font-size($font-heading, 3);
|
28
|
+
}
|
29
|
+
|
30
|
+
.h3 {
|
31
|
+
@include td-set-responsive-font-size($font-heading, 2);
|
32
|
+
}
|
33
|
+
|
34
|
+
.h4 {
|
35
|
+
@include td-set-responsive-font-size($font-heading, 1);
|
36
|
+
}
|
37
|
+
|
38
|
+
.h5 {
|
39
|
+
@include td-set-responsive-font-size($font-heading, 0);
|
40
|
+
}
|
41
|
+
|
42
|
+
.h6 {
|
43
|
+
@include td-set-responsive-font-size($font-heading, -1);
|
44
|
+
}
|
45
|
+
|
46
|
+
.h1, .h2, .h3, .h4, .h5, .h6, p, ul, ol, li, small {
|
47
|
+
margin-top: 0;
|
48
|
+
margin-bottom: $normal-margin;
|
49
|
+
}
|
50
|
+
|
51
|
+
.lead {
|
52
|
+
@include td-set-responsive-font-size($font-copy, 1);
|
53
|
+
}
|
54
|
+
|
55
|
+
p {
|
56
|
+
font-size: inherit;
|
57
|
+
line-height: inherit;
|
58
|
+
}
|
59
|
+
|
60
|
+
small, .footnote {
|
61
|
+
@include td-set-responsive-font-size($font-copy, -1);
|
62
|
+
}
|
63
|
+
|
64
|
+
a {
|
65
|
+
color: inherit;
|
66
|
+
text-decoration: underline;
|
67
|
+
cursor: pointer;
|
68
|
+
}
|
69
|
+
|
70
|
+
a:hover {
|
71
|
+
color: red;
|
72
|
+
}
|
73
|
+
|
74
|
+
a:active {
|
75
|
+
color: red;
|
76
|
+
}
|
77
|
+
|
78
|
+
|
79
|
+
em {
|
80
|
+
font-style: italic;
|
81
|
+
}
|
82
|
+
|
83
|
+
.text-secondary { color: $text-color-secondary; }
|
84
|
+
|
@@ -0,0 +1,162 @@
|
|
1
|
+
@import "compass/reset";
|
2
|
+
@import "typography";
|
3
|
+
@import "icons";
|
4
|
+
|
5
|
+
/******************************************************
|
6
|
+
* Style Guide
|
7
|
+
******************************************************/
|
8
|
+
|
9
|
+
* {
|
10
|
+
box-sizing: border-box;
|
11
|
+
}
|
12
|
+
|
13
|
+
body {
|
14
|
+
background-color: #EFEFEF;
|
15
|
+
}
|
16
|
+
|
17
|
+
nav {
|
18
|
+
margin-bottom: $normal-margin * 4;
|
19
|
+
a {
|
20
|
+
display: inline-block;
|
21
|
+
margin-right: 15px;
|
22
|
+
}
|
23
|
+
}
|
24
|
+
|
25
|
+
.section {
|
26
|
+
width: 100%;
|
27
|
+
padding: 30px 24px;
|
28
|
+
@media (min-width: 768px) {
|
29
|
+
padding: 60px;
|
30
|
+
}
|
31
|
+
}
|
32
|
+
|
33
|
+
.narrow-wrapper {
|
34
|
+
width: 100%;
|
35
|
+
max-width: 575px;
|
36
|
+
}
|
37
|
+
|
38
|
+
.font-comparison {
|
39
|
+
width: 100%;
|
40
|
+
table-layout: fixed;
|
41
|
+
background-color: #FFFFFF;
|
42
|
+
}
|
43
|
+
|
44
|
+
.font-comparison td, th {
|
45
|
+
padding: 12px 15px 15px 20px;
|
46
|
+
vertical-align: top;
|
47
|
+
position: relative;
|
48
|
+
width: 100%;
|
49
|
+
display: block;
|
50
|
+
border-right: none;
|
51
|
+
|
52
|
+
@media screen and (min-width: 768px) {
|
53
|
+
width: auto;
|
54
|
+
display: table-cell;
|
55
|
+
border-right: 1px solid #ededed;
|
56
|
+
}
|
57
|
+
}
|
58
|
+
|
59
|
+
.font-comparison th {
|
60
|
+
@include td-set-responsive-font-size($font-heading, 0);
|
61
|
+
@extend .text-secondary;
|
62
|
+
border-bottom: 1px solid #ededed;
|
63
|
+
}
|
64
|
+
|
65
|
+
.font-comparison tr {
|
66
|
+
border-top: 1px solid #ededed;
|
67
|
+
border-bottom: 1px solid #ededed;
|
68
|
+
width: 100%;
|
69
|
+
}
|
70
|
+
|
71
|
+
.font-comparison thead {
|
72
|
+
display: none;
|
73
|
+
|
74
|
+
@media screen and (min-width: 768px) {
|
75
|
+
display: table-header-group;
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
.font-comparison td p {
|
80
|
+
max-height: 160px;
|
81
|
+
overflow: hidden;
|
82
|
+
margin-bottom: $normal-margin * 1.5;
|
83
|
+
position: relative;
|
84
|
+
@media screen and (min-width: 768px) {
|
85
|
+
max-height: 300px;
|
86
|
+
}
|
87
|
+
|
88
|
+
&:after {
|
89
|
+
content: "";
|
90
|
+
height: 40px;
|
91
|
+
background-color: white;
|
92
|
+
position: absolute;
|
93
|
+
left: 0;
|
94
|
+
right: 0;
|
95
|
+
bottom: 0;
|
96
|
+
background: -moz-linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,1)); /* FF3.6-15 */
|
97
|
+
background: -webkit-linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,1)); /* Chrome10-25,Safari5.1-6 */
|
98
|
+
background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1)); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
99
|
+
}
|
100
|
+
}
|
101
|
+
|
102
|
+
.font-comparison th:first-child {
|
103
|
+
border-right: 1px solid #ededed;
|
104
|
+
text-align: left;
|
105
|
+
|
106
|
+
@media screen and (min-width: 768px) {
|
107
|
+
width: 8%;
|
108
|
+
display: table-cell;
|
109
|
+
text-align: right;
|
110
|
+
}
|
111
|
+
}
|
112
|
+
|
113
|
+
.font-comparison th:last-child {
|
114
|
+
@media screen and (min-width: 768px) {
|
115
|
+
width: 18%;
|
116
|
+
}
|
117
|
+
}
|
118
|
+
|
119
|
+
.metrics {
|
120
|
+
@include td-set-responsive-font-size($font-heading, 0);
|
121
|
+
}
|
122
|
+
|
123
|
+
|
124
|
+
// Copy
|
125
|
+
|
126
|
+
.copy-larger4 {
|
127
|
+
@include td-set-responsive-font-size($font-copy, 4);
|
128
|
+
}
|
129
|
+
|
130
|
+
.copy-larger3 {
|
131
|
+
@include td-set-responsive-font-size($font-copy, 3);
|
132
|
+
}
|
133
|
+
|
134
|
+
.copy-larger2 {
|
135
|
+
@include td-set-responsive-font-size($font-copy, 2);
|
136
|
+
}
|
137
|
+
|
138
|
+
// Icons
|
139
|
+
|
140
|
+
.icon-larger4 {
|
141
|
+
@include td-set-responsive-font-size($font-icon, 4);
|
142
|
+
}
|
143
|
+
|
144
|
+
.icon-larger3 {
|
145
|
+
@include td-set-responsive-font-size($font-icon, 3);
|
146
|
+
}
|
147
|
+
|
148
|
+
.icon-larger2 {
|
149
|
+
@include td-set-responsive-font-size($font-icon, 2);
|
150
|
+
}
|
151
|
+
|
152
|
+
.icon-larger1 {
|
153
|
+
@include td-set-responsive-font-size($font-icon, 1);
|
154
|
+
}
|
155
|
+
|
156
|
+
.icon-base {
|
157
|
+
@include td-set-responsive-font-size($font-icon, 0);
|
158
|
+
}
|
159
|
+
|
160
|
+
.icon-smaller {
|
161
|
+
@include td-set-responsive-font-size($font-copy, -1);
|
162
|
+
}
|
@@ -0,0 +1,1240 @@
|
|
1
|
+
/* line 5, ../../../../../.gem/ruby/2.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
|
2
|
+
html, body, div, span, applet, object, iframe,
|
3
|
+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
4
|
+
a, abbr, acronym, address, big, cite, code,
|
5
|
+
del, dfn, em, img, ins, kbd, q, s, samp,
|
6
|
+
small, strike, strong, sub, sup, tt, var,
|
7
|
+
b, u, i, center,
|
8
|
+
dl, dt, dd, ol, ul, li,
|
9
|
+
fieldset, form, label, legend,
|
10
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
11
|
+
article, aside, canvas, details, embed,
|
12
|
+
figure, figcaption, footer, header, hgroup,
|
13
|
+
menu, nav, output, ruby, section, summary,
|
14
|
+
time, mark, audio, video {
|
15
|
+
margin: 0;
|
16
|
+
padding: 0;
|
17
|
+
border: 0;
|
18
|
+
font: inherit;
|
19
|
+
font-size: 100%;
|
20
|
+
vertical-align: baseline;
|
21
|
+
}
|
22
|
+
|
23
|
+
/* line 22, ../../../../../.gem/ruby/2.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
|
24
|
+
html {
|
25
|
+
line-height: 1;
|
26
|
+
}
|
27
|
+
|
28
|
+
/* line 24, ../../../../../.gem/ruby/2.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
|
29
|
+
ol, ul {
|
30
|
+
list-style: none;
|
31
|
+
}
|
32
|
+
|
33
|
+
/* line 26, ../../../../../.gem/ruby/2.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
|
34
|
+
table {
|
35
|
+
border-collapse: collapse;
|
36
|
+
border-spacing: 0;
|
37
|
+
}
|
38
|
+
|
39
|
+
/* line 28, ../../../../../.gem/ruby/2.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
|
40
|
+
caption, th, td {
|
41
|
+
text-align: left;
|
42
|
+
font-weight: normal;
|
43
|
+
vertical-align: middle;
|
44
|
+
}
|
45
|
+
|
46
|
+
/* line 30, ../../../../../.gem/ruby/2.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
|
47
|
+
q, blockquote {
|
48
|
+
quotes: none;
|
49
|
+
}
|
50
|
+
/* line 103, ../../../../../.gem/ruby/2.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
|
51
|
+
q:before, q:after, blockquote:before, blockquote:after {
|
52
|
+
content: "";
|
53
|
+
content: none;
|
54
|
+
}
|
55
|
+
|
56
|
+
/* line 32, ../../../../../.gem/ruby/2.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
|
57
|
+
a img {
|
58
|
+
border: none;
|
59
|
+
}
|
60
|
+
|
61
|
+
/* line 116, ../../../../../.gem/ruby/2.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
|
62
|
+
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
|
63
|
+
display: block;
|
64
|
+
}
|
65
|
+
|
66
|
+
/******************************************************
|
67
|
+
* MIXINS
|
68
|
+
******************************************************/
|
69
|
+
/******************************************************
|
70
|
+
* FONTS
|
71
|
+
******************************************************/
|
72
|
+
/******************************************************
|
73
|
+
* FONT ROLES
|
74
|
+
******************************************************/
|
75
|
+
/******************************************************
|
76
|
+
* TYPOGRAPHY CONFIG
|
77
|
+
******************************************************/
|
78
|
+
/******************************************************
|
79
|
+
* Typography
|
80
|
+
******************************************************/
|
81
|
+
/* line 12, ../sass/_typography.scss */
|
82
|
+
body {
|
83
|
+
font-family: Georgia, serif;
|
84
|
+
font-size: 16px;
|
85
|
+
line-height: 1.5;
|
86
|
+
font-weight: normal;
|
87
|
+
color: rgba(0, 0, 0, 0.9);
|
88
|
+
}
|
89
|
+
@media screen and (min-width: 768px) {
|
90
|
+
/* line 12, ../sass/_typography.scss */
|
91
|
+
body {
|
92
|
+
font-size: 18px;
|
93
|
+
line-height: 1.6;
|
94
|
+
}
|
95
|
+
}
|
96
|
+
|
97
|
+
/* line 18, ../sass/_typography.scss */
|
98
|
+
.h1, .h2, .h3, .h4, .h5, .h6 {
|
99
|
+
font-weight: bold;
|
100
|
+
}
|
101
|
+
|
102
|
+
/* line 22, ../sass/_typography.scss */
|
103
|
+
.h1 {
|
104
|
+
font-family: Verdana, sans-serif;
|
105
|
+
font-size: 24.92px;
|
106
|
+
line-height: 1.42584;
|
107
|
+
}
|
108
|
+
@media screen and (min-width: 768px) {
|
109
|
+
/* line 22, ../sass/_typography.scss */
|
110
|
+
.h1 {
|
111
|
+
font-size: 37.38px;
|
112
|
+
line-height: 1.32022;
|
113
|
+
}
|
114
|
+
}
|
115
|
+
|
116
|
+
/* line 26, ../sass/_typography.scss */
|
117
|
+
.h2 {
|
118
|
+
font-family: Verdana, sans-serif;
|
119
|
+
font-size: 21.66649px;
|
120
|
+
line-height: 1.4639;
|
121
|
+
}
|
122
|
+
@media screen and (min-width: 768px) {
|
123
|
+
/* line 26, ../sass/_typography.scss */
|
124
|
+
.h2 {
|
125
|
+
font-size: 30.24441px;
|
126
|
+
line-height: 1.40427;
|
127
|
+
}
|
128
|
+
}
|
129
|
+
|
130
|
+
/* line 30, ../sass/_typography.scss */
|
131
|
+
.h3 {
|
132
|
+
font-family: Verdana, sans-serif;
|
133
|
+
font-size: 18.83775px;
|
134
|
+
line-height: 1.50297;
|
135
|
+
}
|
136
|
+
@media screen and (min-width: 768px) {
|
137
|
+
/* line 30, ../sass/_typography.scss */
|
138
|
+
.h3 {
|
139
|
+
font-size: 24.47095px;
|
140
|
+
line-height: 1.49366;
|
141
|
+
}
|
142
|
+
}
|
143
|
+
|
144
|
+
/* line 34, ../sass/_typography.scss */
|
145
|
+
.h4 {
|
146
|
+
font-family: Verdana, sans-serif;
|
147
|
+
font-size: 16.37833px;
|
148
|
+
line-height: 1.54308;
|
149
|
+
}
|
150
|
+
@media screen and (min-width: 768px) {
|
151
|
+
/* line 34, ../sass/_typography.scss */
|
152
|
+
.h4 {
|
153
|
+
font-size: 19.79961px;
|
154
|
+
line-height: 1.58875;
|
155
|
+
}
|
156
|
+
}
|
157
|
+
|
158
|
+
/* line 38, ../sass/_typography.scss */
|
159
|
+
.h5 {
|
160
|
+
font-family: Verdana, sans-serif;
|
161
|
+
font-size: 14.24px;
|
162
|
+
line-height: 1.58427;
|
163
|
+
}
|
164
|
+
@media screen and (min-width: 768px) {
|
165
|
+
/* line 38, ../sass/_typography.scss */
|
166
|
+
.h5 {
|
167
|
+
font-size: 16.02px;
|
168
|
+
line-height: 1.68989;
|
169
|
+
}
|
170
|
+
}
|
171
|
+
|
172
|
+
/* line 42, ../sass/_typography.scss */
|
173
|
+
.h6 {
|
174
|
+
font-family: Verdana, sans-serif;
|
175
|
+
font-size: 12.38085px;
|
176
|
+
line-height: 1.62655;
|
177
|
+
}
|
178
|
+
@media screen and (min-width: 768px) {
|
179
|
+
/* line 42, ../sass/_typography.scss */
|
180
|
+
.h6 {
|
181
|
+
font-size: 12.96189px;
|
182
|
+
line-height: 1.79746;
|
183
|
+
}
|
184
|
+
}
|
185
|
+
|
186
|
+
/* line 46, ../sass/_typography.scss */
|
187
|
+
.h1, .h2, .h3, .h4, .h5, .h6, p, ul, ol, li, small {
|
188
|
+
margin-top: 0;
|
189
|
+
margin-bottom: 12px;
|
190
|
+
}
|
191
|
+
|
192
|
+
/* line 51, ../sass/_typography.scss */
|
193
|
+
.lead {
|
194
|
+
font-family: Georgia, serif;
|
195
|
+
font-size: 18.40261px;
|
196
|
+
line-height: 1.46101;
|
197
|
+
}
|
198
|
+
@media screen and (min-width: 768px) {
|
199
|
+
/* line 51, ../sass/_typography.scss */
|
200
|
+
.lead {
|
201
|
+
font-size: 22.24676px;
|
202
|
+
line-height: 1.50424;
|
203
|
+
}
|
204
|
+
}
|
205
|
+
|
206
|
+
/* line 55, ../sass/_typography.scss */
|
207
|
+
p {
|
208
|
+
font-size: inherit;
|
209
|
+
line-height: inherit;
|
210
|
+
}
|
211
|
+
|
212
|
+
/* line 60, ../sass/_typography.scss */
|
213
|
+
small, .footnote {
|
214
|
+
font-family: Georgia, serif;
|
215
|
+
font-size: 13.91107px;
|
216
|
+
line-height: 1.54004;
|
217
|
+
}
|
218
|
+
@media screen and (min-width: 768px) {
|
219
|
+
/* line 60, ../sass/_typography.scss */
|
220
|
+
small, .footnote {
|
221
|
+
font-size: 14.56392px;
|
222
|
+
line-height: 1.70185;
|
223
|
+
}
|
224
|
+
}
|
225
|
+
|
226
|
+
/* line 64, ../sass/_typography.scss */
|
227
|
+
a {
|
228
|
+
color: inherit;
|
229
|
+
text-decoration: underline;
|
230
|
+
cursor: pointer;
|
231
|
+
}
|
232
|
+
|
233
|
+
/* line 70, ../sass/_typography.scss */
|
234
|
+
a:hover {
|
235
|
+
color: red;
|
236
|
+
}
|
237
|
+
|
238
|
+
/* line 74, ../sass/_typography.scss */
|
239
|
+
a:active {
|
240
|
+
color: red;
|
241
|
+
}
|
242
|
+
|
243
|
+
/* line 79, ../sass/_typography.scss */
|
244
|
+
em {
|
245
|
+
font-style: italic;
|
246
|
+
}
|
247
|
+
|
248
|
+
/* line 83, ../sass/_typography.scss */
|
249
|
+
.text-secondary, .font-comparison th {
|
250
|
+
color: rgba(0, 0, 0, 0.5);
|
251
|
+
}
|
252
|
+
|
253
|
+
@font-face {
|
254
|
+
font-family: "feather";
|
255
|
+
src: url("../fonts/feather-webfont.eot");
|
256
|
+
src: url("../fonts/feather-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/feather-webfont.woff") format("woff"), url("../fonts/feather-webfont.ttf") format("truetype"), url("../fonts/feather-webfont.svg#feather") format("svg");
|
257
|
+
font-weight: normal;
|
258
|
+
font-style: normal;
|
259
|
+
}
|
260
|
+
/* Character Mapping Method */
|
261
|
+
/* line 16, ../sass/_icons.scss */
|
262
|
+
[data-icon]:before {
|
263
|
+
display: inline-block;
|
264
|
+
font-family: "feather";
|
265
|
+
content: attr(data-icon);
|
266
|
+
font-style: normal;
|
267
|
+
font-weight: normal;
|
268
|
+
font-variant: normal;
|
269
|
+
text-transform: none;
|
270
|
+
speak: none;
|
271
|
+
line-height: 1;
|
272
|
+
-webkit-font-smoothing: antialiased;
|
273
|
+
-moz-osx-font-smoothing: grayscale;
|
274
|
+
}
|
275
|
+
|
276
|
+
/* CSS Class Mapping Method */
|
277
|
+
/* line 32, ../sass/_icons.scss */
|
278
|
+
[class^="icon-"],
|
279
|
+
[class*=" icon-"] {
|
280
|
+
display: inline-block;
|
281
|
+
font-family: "feather";
|
282
|
+
font-style: normal;
|
283
|
+
font-weight: normal;
|
284
|
+
font-variant: normal;
|
285
|
+
text-transform: none;
|
286
|
+
speak: none;
|
287
|
+
line-height: 1;
|
288
|
+
-webkit-font-smoothing: antialiased;
|
289
|
+
-moz-osx-font-smoothing: grayscale;
|
290
|
+
}
|
291
|
+
|
292
|
+
/* line 46, ../sass/_icons.scss */
|
293
|
+
.icon-eye:before {
|
294
|
+
content: "\e000";
|
295
|
+
}
|
296
|
+
|
297
|
+
/* line 50, ../sass/_icons.scss */
|
298
|
+
.icon-paper-clip:before {
|
299
|
+
content: "\e001";
|
300
|
+
}
|
301
|
+
|
302
|
+
/* line 54, ../sass/_icons.scss */
|
303
|
+
.icon-mail:before {
|
304
|
+
content: "\e002";
|
305
|
+
}
|
306
|
+
|
307
|
+
/* line 58, ../sass/_icons.scss */
|
308
|
+
.icon-mail:before {
|
309
|
+
content: "\e002";
|
310
|
+
}
|
311
|
+
|
312
|
+
/* line 62, ../sass/_icons.scss */
|
313
|
+
.icon-toggle:before {
|
314
|
+
content: "\e003";
|
315
|
+
}
|
316
|
+
|
317
|
+
/* line 66, ../sass/_icons.scss */
|
318
|
+
.icon-layout:before {
|
319
|
+
content: "\e004";
|
320
|
+
}
|
321
|
+
|
322
|
+
/* line 70, ../sass/_icons.scss */
|
323
|
+
.icon-link:before {
|
324
|
+
content: "\e005";
|
325
|
+
}
|
326
|
+
|
327
|
+
/* line 74, ../sass/_icons.scss */
|
328
|
+
.icon-bell:before {
|
329
|
+
content: "\e006";
|
330
|
+
}
|
331
|
+
|
332
|
+
/* line 78, ../sass/_icons.scss */
|
333
|
+
.icon-lock:before {
|
334
|
+
content: "\e007";
|
335
|
+
}
|
336
|
+
|
337
|
+
/* line 82, ../sass/_icons.scss */
|
338
|
+
.icon-unlock:before {
|
339
|
+
content: "\e008";
|
340
|
+
}
|
341
|
+
|
342
|
+
/* line 86, ../sass/_icons.scss */
|
343
|
+
.icon-ribbon:before {
|
344
|
+
content: "\e009";
|
345
|
+
}
|
346
|
+
|
347
|
+
/* line 90, ../sass/_icons.scss */
|
348
|
+
.icon-image:before {
|
349
|
+
content: "\e010";
|
350
|
+
}
|
351
|
+
|
352
|
+
/* line 94, ../sass/_icons.scss */
|
353
|
+
.icon-signal:before {
|
354
|
+
content: "\e011";
|
355
|
+
}
|
356
|
+
|
357
|
+
/* line 98, ../sass/_icons.scss */
|
358
|
+
.icon-target:before {
|
359
|
+
content: "\e012";
|
360
|
+
}
|
361
|
+
|
362
|
+
/* line 102, ../sass/_icons.scss */
|
363
|
+
.icon-clipboard:before {
|
364
|
+
content: "\e013";
|
365
|
+
}
|
366
|
+
|
367
|
+
/* line 106, ../sass/_icons.scss */
|
368
|
+
.icon-clock:before {
|
369
|
+
content: "\e014";
|
370
|
+
}
|
371
|
+
|
372
|
+
/* line 110, ../sass/_icons.scss */
|
373
|
+
.icon-clock:before {
|
374
|
+
content: "\e014";
|
375
|
+
}
|
376
|
+
|
377
|
+
/* line 114, ../sass/_icons.scss */
|
378
|
+
.icon-watch:before {
|
379
|
+
content: "\e015";
|
380
|
+
}
|
381
|
+
|
382
|
+
/* line 118, ../sass/_icons.scss */
|
383
|
+
.icon-air-play:before {
|
384
|
+
content: "\e016";
|
385
|
+
}
|
386
|
+
|
387
|
+
/* line 122, ../sass/_icons.scss */
|
388
|
+
.icon-camera:before {
|
389
|
+
content: "\e017";
|
390
|
+
}
|
391
|
+
|
392
|
+
/* line 126, ../sass/_icons.scss */
|
393
|
+
.icon-video:before {
|
394
|
+
content: "\e018";
|
395
|
+
}
|
396
|
+
|
397
|
+
/* line 130, ../sass/_icons.scss */
|
398
|
+
.icon-disc:before {
|
399
|
+
content: "\e019";
|
400
|
+
}
|
401
|
+
|
402
|
+
/* line 134, ../sass/_icons.scss */
|
403
|
+
.icon-printer:before {
|
404
|
+
content: "\e020";
|
405
|
+
}
|
406
|
+
|
407
|
+
/* line 138, ../sass/_icons.scss */
|
408
|
+
.icon-monitor:before {
|
409
|
+
content: "\e021";
|
410
|
+
}
|
411
|
+
|
412
|
+
/* line 142, ../sass/_icons.scss */
|
413
|
+
.icon-server:before {
|
414
|
+
content: "\e022";
|
415
|
+
}
|
416
|
+
|
417
|
+
/* line 146, ../sass/_icons.scss */
|
418
|
+
.icon-cog:before {
|
419
|
+
content: "\e023";
|
420
|
+
}
|
421
|
+
|
422
|
+
/* line 150, ../sass/_icons.scss */
|
423
|
+
.icon-heart:before {
|
424
|
+
content: "\e024";
|
425
|
+
}
|
426
|
+
|
427
|
+
/* line 154, ../sass/_icons.scss */
|
428
|
+
.icon-paragraph:before {
|
429
|
+
content: "\e025";
|
430
|
+
}
|
431
|
+
|
432
|
+
/* line 158, ../sass/_icons.scss */
|
433
|
+
.icon-align-justify:before {
|
434
|
+
content: "\e026";
|
435
|
+
}
|
436
|
+
|
437
|
+
/* line 162, ../sass/_icons.scss */
|
438
|
+
.icon-align-left:before {
|
439
|
+
content: "\e027";
|
440
|
+
}
|
441
|
+
|
442
|
+
/* line 166, ../sass/_icons.scss */
|
443
|
+
.icon-align-center:before {
|
444
|
+
content: "\e028";
|
445
|
+
}
|
446
|
+
|
447
|
+
/* line 170, ../sass/_icons.scss */
|
448
|
+
.icon-align-right:before {
|
449
|
+
content: "\e029";
|
450
|
+
}
|
451
|
+
|
452
|
+
/* line 174, ../sass/_icons.scss */
|
453
|
+
.icon-book:before {
|
454
|
+
content: "\e030";
|
455
|
+
}
|
456
|
+
|
457
|
+
/* line 178, ../sass/_icons.scss */
|
458
|
+
.icon-layers:before {
|
459
|
+
content: "\e031";
|
460
|
+
}
|
461
|
+
|
462
|
+
/* line 182, ../sass/_icons.scss */
|
463
|
+
.icon-stack:before {
|
464
|
+
content: "\e032";
|
465
|
+
}
|
466
|
+
|
467
|
+
/* line 186, ../sass/_icons.scss */
|
468
|
+
.icon-stack-2:before {
|
469
|
+
content: "\e033";
|
470
|
+
}
|
471
|
+
|
472
|
+
/* line 190, ../sass/_icons.scss */
|
473
|
+
.icon-paper:before {
|
474
|
+
content: "\e034";
|
475
|
+
}
|
476
|
+
|
477
|
+
/* line 194, ../sass/_icons.scss */
|
478
|
+
.icon-paper-stack:before {
|
479
|
+
content: "\e035";
|
480
|
+
}
|
481
|
+
|
482
|
+
/* line 198, ../sass/_icons.scss */
|
483
|
+
.icon-search:before {
|
484
|
+
content: "\e036";
|
485
|
+
}
|
486
|
+
|
487
|
+
/* line 202, ../sass/_icons.scss */
|
488
|
+
.icon-zoom-in:before {
|
489
|
+
content: "\e037";
|
490
|
+
}
|
491
|
+
|
492
|
+
/* line 206, ../sass/_icons.scss */
|
493
|
+
.icon-zoom-out:before {
|
494
|
+
content: "\e038";
|
495
|
+
}
|
496
|
+
|
497
|
+
/* line 210, ../sass/_icons.scss */
|
498
|
+
.icon-reply:before {
|
499
|
+
content: "\e039";
|
500
|
+
}
|
501
|
+
|
502
|
+
/* line 214, ../sass/_icons.scss */
|
503
|
+
.icon-circle-plus:before {
|
504
|
+
content: "\e040";
|
505
|
+
}
|
506
|
+
|
507
|
+
/* line 218, ../sass/_icons.scss */
|
508
|
+
.icon-circle-minus:before {
|
509
|
+
content: "\e041";
|
510
|
+
}
|
511
|
+
|
512
|
+
/* line 222, ../sass/_icons.scss */
|
513
|
+
.icon-circle-check:before {
|
514
|
+
content: "\e042";
|
515
|
+
}
|
516
|
+
|
517
|
+
/* line 226, ../sass/_icons.scss */
|
518
|
+
.icon-circle-cross:before {
|
519
|
+
content: "\e043";
|
520
|
+
}
|
521
|
+
|
522
|
+
/* line 230, ../sass/_icons.scss */
|
523
|
+
.icon-square-plus:before {
|
524
|
+
content: "\e044";
|
525
|
+
}
|
526
|
+
|
527
|
+
/* line 234, ../sass/_icons.scss */
|
528
|
+
.icon-square-minus:before {
|
529
|
+
content: "\e045";
|
530
|
+
}
|
531
|
+
|
532
|
+
/* line 238, ../sass/_icons.scss */
|
533
|
+
.icon-square-check:before {
|
534
|
+
content: "\e046";
|
535
|
+
}
|
536
|
+
|
537
|
+
/* line 242, ../sass/_icons.scss */
|
538
|
+
.icon-square-cross:before {
|
539
|
+
content: "\e047";
|
540
|
+
}
|
541
|
+
|
542
|
+
/* line 246, ../sass/_icons.scss */
|
543
|
+
.icon-microphone:before {
|
544
|
+
content: "\e048";
|
545
|
+
}
|
546
|
+
|
547
|
+
/* line 250, ../sass/_icons.scss */
|
548
|
+
.icon-record:before {
|
549
|
+
content: "\e049";
|
550
|
+
}
|
551
|
+
|
552
|
+
/* line 254, ../sass/_icons.scss */
|
553
|
+
.icon-skip-back:before {
|
554
|
+
content: "\e050";
|
555
|
+
}
|
556
|
+
|
557
|
+
/* line 258, ../sass/_icons.scss */
|
558
|
+
.icon-rewind:before {
|
559
|
+
content: "\e051";
|
560
|
+
}
|
561
|
+
|
562
|
+
/* line 262, ../sass/_icons.scss */
|
563
|
+
.icon-play:before {
|
564
|
+
content: "\e052";
|
565
|
+
}
|
566
|
+
|
567
|
+
/* line 266, ../sass/_icons.scss */
|
568
|
+
.icon-pause:before {
|
569
|
+
content: "\e053";
|
570
|
+
}
|
571
|
+
|
572
|
+
/* line 270, ../sass/_icons.scss */
|
573
|
+
.icon-stop:before {
|
574
|
+
content: "\e054";
|
575
|
+
}
|
576
|
+
|
577
|
+
/* line 274, ../sass/_icons.scss */
|
578
|
+
.icon-fast-forward:before {
|
579
|
+
content: "\e055";
|
580
|
+
}
|
581
|
+
|
582
|
+
/* line 278, ../sass/_icons.scss */
|
583
|
+
.icon-skip-forward:before {
|
584
|
+
content: "\e056";
|
585
|
+
}
|
586
|
+
|
587
|
+
/* line 282, ../sass/_icons.scss */
|
588
|
+
.icon-shuffle:before {
|
589
|
+
content: "\e057";
|
590
|
+
}
|
591
|
+
|
592
|
+
/* line 286, ../sass/_icons.scss */
|
593
|
+
.icon-repeat:before {
|
594
|
+
content: "\e058";
|
595
|
+
}
|
596
|
+
|
597
|
+
/* line 290, ../sass/_icons.scss */
|
598
|
+
.icon-folder:before {
|
599
|
+
content: "\e059";
|
600
|
+
}
|
601
|
+
|
602
|
+
/* line 294, ../sass/_icons.scss */
|
603
|
+
.icon-umbrella:before {
|
604
|
+
content: "\e060";
|
605
|
+
}
|
606
|
+
|
607
|
+
/* line 298, ../sass/_icons.scss */
|
608
|
+
.icon-moon:before {
|
609
|
+
content: "\e061";
|
610
|
+
}
|
611
|
+
|
612
|
+
/* line 302, ../sass/_icons.scss */
|
613
|
+
.icon-thermometer:before {
|
614
|
+
content: "\e062";
|
615
|
+
}
|
616
|
+
|
617
|
+
/* line 306, ../sass/_icons.scss */
|
618
|
+
.icon-drop:before {
|
619
|
+
content: "\e063";
|
620
|
+
}
|
621
|
+
|
622
|
+
/* line 310, ../sass/_icons.scss */
|
623
|
+
.icon-sun:before {
|
624
|
+
content: "\e064";
|
625
|
+
}
|
626
|
+
|
627
|
+
/* line 314, ../sass/_icons.scss */
|
628
|
+
.icon-cloud:before {
|
629
|
+
content: "\e065";
|
630
|
+
}
|
631
|
+
|
632
|
+
/* line 318, ../sass/_icons.scss */
|
633
|
+
.icon-cloud-upload:before {
|
634
|
+
content: "\e066";
|
635
|
+
}
|
636
|
+
|
637
|
+
/* line 322, ../sass/_icons.scss */
|
638
|
+
.icon-cloud-download:before {
|
639
|
+
content: "\e067";
|
640
|
+
}
|
641
|
+
|
642
|
+
/* line 326, ../sass/_icons.scss */
|
643
|
+
.icon-upload:before {
|
644
|
+
content: "\e068";
|
645
|
+
}
|
646
|
+
|
647
|
+
/* line 330, ../sass/_icons.scss */
|
648
|
+
.icon-download:before {
|
649
|
+
content: "\e069";
|
650
|
+
}
|
651
|
+
|
652
|
+
/* line 334, ../sass/_icons.scss */
|
653
|
+
.icon-location:before {
|
654
|
+
content: "\e070";
|
655
|
+
}
|
656
|
+
|
657
|
+
/* line 338, ../sass/_icons.scss */
|
658
|
+
.icon-location-2:before {
|
659
|
+
content: "\e071";
|
660
|
+
}
|
661
|
+
|
662
|
+
/* line 342, ../sass/_icons.scss */
|
663
|
+
.icon-map:before {
|
664
|
+
content: "\e072";
|
665
|
+
}
|
666
|
+
|
667
|
+
/* line 346, ../sass/_icons.scss */
|
668
|
+
.icon-battery:before {
|
669
|
+
content: "\e073";
|
670
|
+
}
|
671
|
+
|
672
|
+
/* line 350, ../sass/_icons.scss */
|
673
|
+
.icon-head:before {
|
674
|
+
content: "\e074";
|
675
|
+
}
|
676
|
+
|
677
|
+
/* line 354, ../sass/_icons.scss */
|
678
|
+
.icon-briefcase:before {
|
679
|
+
content: "\e075";
|
680
|
+
}
|
681
|
+
|
682
|
+
/* line 358, ../sass/_icons.scss */
|
683
|
+
.icon-speech-bubble:before {
|
684
|
+
content: "\e076";
|
685
|
+
}
|
686
|
+
|
687
|
+
/* line 362, ../sass/_icons.scss */
|
688
|
+
.icon-anchor:before {
|
689
|
+
content: "\e077";
|
690
|
+
}
|
691
|
+
|
692
|
+
/* line 366, ../sass/_icons.scss */
|
693
|
+
.icon-globe:before {
|
694
|
+
content: "\e078";
|
695
|
+
}
|
696
|
+
|
697
|
+
/* line 370, ../sass/_icons.scss */
|
698
|
+
.icon-box:before {
|
699
|
+
content: "\e079";
|
700
|
+
}
|
701
|
+
|
702
|
+
/* line 374, ../sass/_icons.scss */
|
703
|
+
.icon-reload:before {
|
704
|
+
content: "\e080";
|
705
|
+
}
|
706
|
+
|
707
|
+
/* line 378, ../sass/_icons.scss */
|
708
|
+
.icon-share:before {
|
709
|
+
content: "\e081";
|
710
|
+
}
|
711
|
+
|
712
|
+
/* line 382, ../sass/_icons.scss */
|
713
|
+
.icon-marquee:before {
|
714
|
+
content: "\e082";
|
715
|
+
}
|
716
|
+
|
717
|
+
/* line 386, ../sass/_icons.scss */
|
718
|
+
.icon-marquee-plus:before {
|
719
|
+
content: "\e083";
|
720
|
+
}
|
721
|
+
|
722
|
+
/* line 390, ../sass/_icons.scss */
|
723
|
+
.icon-marquee-minus:before {
|
724
|
+
content: "\e084";
|
725
|
+
}
|
726
|
+
|
727
|
+
/* line 394, ../sass/_icons.scss */
|
728
|
+
.icon-tag:before {
|
729
|
+
content: "\e085";
|
730
|
+
}
|
731
|
+
|
732
|
+
/* line 398, ../sass/_icons.scss */
|
733
|
+
.icon-power:before {
|
734
|
+
content: "\e086";
|
735
|
+
}
|
736
|
+
|
737
|
+
/* line 402, ../sass/_icons.scss */
|
738
|
+
.icon-command:before {
|
739
|
+
content: "\e087";
|
740
|
+
}
|
741
|
+
|
742
|
+
/* line 406, ../sass/_icons.scss */
|
743
|
+
.icon-alt:before {
|
744
|
+
content: "\e088";
|
745
|
+
}
|
746
|
+
|
747
|
+
/* line 410, ../sass/_icons.scss */
|
748
|
+
.icon-esc:before {
|
749
|
+
content: "\e089";
|
750
|
+
}
|
751
|
+
|
752
|
+
/* line 414, ../sass/_icons.scss */
|
753
|
+
.icon-bar-graph:before {
|
754
|
+
content: "\e090";
|
755
|
+
}
|
756
|
+
|
757
|
+
/* line 418, ../sass/_icons.scss */
|
758
|
+
.icon-bar-graph-2:before {
|
759
|
+
content: "\e091";
|
760
|
+
}
|
761
|
+
|
762
|
+
/* line 422, ../sass/_icons.scss */
|
763
|
+
.icon-pie-graph:before {
|
764
|
+
content: "\e092";
|
765
|
+
}
|
766
|
+
|
767
|
+
/* line 426, ../sass/_icons.scss */
|
768
|
+
.icon-star:before {
|
769
|
+
content: "\e093";
|
770
|
+
}
|
771
|
+
|
772
|
+
/* line 430, ../sass/_icons.scss */
|
773
|
+
.icon-arrow-left:before {
|
774
|
+
content: "\e094";
|
775
|
+
}
|
776
|
+
|
777
|
+
/* line 434, ../sass/_icons.scss */
|
778
|
+
.icon-arrow-right:before {
|
779
|
+
content: "\e095";
|
780
|
+
}
|
781
|
+
|
782
|
+
/* line 438, ../sass/_icons.scss */
|
783
|
+
.icon-arrow-up:before {
|
784
|
+
content: "\e096";
|
785
|
+
}
|
786
|
+
|
787
|
+
/* line 442, ../sass/_icons.scss */
|
788
|
+
.icon-arrow-down:before {
|
789
|
+
content: "\e097";
|
790
|
+
}
|
791
|
+
|
792
|
+
/* line 446, ../sass/_icons.scss */
|
793
|
+
.icon-volume:before {
|
794
|
+
content: "\e098";
|
795
|
+
}
|
796
|
+
|
797
|
+
/* line 450, ../sass/_icons.scss */
|
798
|
+
.icon-mute:before {
|
799
|
+
content: "\e099";
|
800
|
+
}
|
801
|
+
|
802
|
+
/* line 454, ../sass/_icons.scss */
|
803
|
+
.icon-content-right:before {
|
804
|
+
content: "\e100";
|
805
|
+
}
|
806
|
+
|
807
|
+
/* line 458, ../sass/_icons.scss */
|
808
|
+
.icon-content-left:before {
|
809
|
+
content: "\e101";
|
810
|
+
}
|
811
|
+
|
812
|
+
/* line 462, ../sass/_icons.scss */
|
813
|
+
.icon-grid:before {
|
814
|
+
content: "\e102";
|
815
|
+
}
|
816
|
+
|
817
|
+
/* line 466, ../sass/_icons.scss */
|
818
|
+
.icon-grid-2:before {
|
819
|
+
content: "\e103";
|
820
|
+
}
|
821
|
+
|
822
|
+
/* line 470, ../sass/_icons.scss */
|
823
|
+
.icon-columns:before {
|
824
|
+
content: "\e104";
|
825
|
+
}
|
826
|
+
|
827
|
+
/* line 474, ../sass/_icons.scss */
|
828
|
+
.icon-loader:before {
|
829
|
+
content: "\e105";
|
830
|
+
}
|
831
|
+
|
832
|
+
/* line 478, ../sass/_icons.scss */
|
833
|
+
.icon-bag:before {
|
834
|
+
content: "\e106";
|
835
|
+
}
|
836
|
+
|
837
|
+
/* line 482, ../sass/_icons.scss */
|
838
|
+
.icon-ban:before {
|
839
|
+
content: "\e107";
|
840
|
+
}
|
841
|
+
|
842
|
+
/* line 486, ../sass/_icons.scss */
|
843
|
+
.icon-flag:before {
|
844
|
+
content: "\e108";
|
845
|
+
}
|
846
|
+
|
847
|
+
/* line 490, ../sass/_icons.scss */
|
848
|
+
.icon-trash:before {
|
849
|
+
content: "\e109";
|
850
|
+
}
|
851
|
+
|
852
|
+
/* line 494, ../sass/_icons.scss */
|
853
|
+
.icon-expand:before {
|
854
|
+
content: "\e110";
|
855
|
+
}
|
856
|
+
|
857
|
+
/* line 498, ../sass/_icons.scss */
|
858
|
+
.icon-contract:before {
|
859
|
+
content: "\e111";
|
860
|
+
}
|
861
|
+
|
862
|
+
/* line 502, ../sass/_icons.scss */
|
863
|
+
.icon-maximize:before {
|
864
|
+
content: "\e112";
|
865
|
+
}
|
866
|
+
|
867
|
+
/* line 506, ../sass/_icons.scss */
|
868
|
+
.icon-minimize:before {
|
869
|
+
content: "\e113";
|
870
|
+
}
|
871
|
+
|
872
|
+
/* line 510, ../sass/_icons.scss */
|
873
|
+
.icon-plus:before {
|
874
|
+
content: "\e114";
|
875
|
+
}
|
876
|
+
|
877
|
+
/* line 514, ../sass/_icons.scss */
|
878
|
+
.icon-minus:before {
|
879
|
+
content: "\e115";
|
880
|
+
}
|
881
|
+
|
882
|
+
/* line 518, ../sass/_icons.scss */
|
883
|
+
.icon-check:before {
|
884
|
+
content: "\e116";
|
885
|
+
}
|
886
|
+
|
887
|
+
/* line 522, ../sass/_icons.scss */
|
888
|
+
.icon-cross:before {
|
889
|
+
content: "\e117";
|
890
|
+
}
|
891
|
+
|
892
|
+
/* line 526, ../sass/_icons.scss */
|
893
|
+
.icon-move:before {
|
894
|
+
content: "\e118";
|
895
|
+
}
|
896
|
+
|
897
|
+
/* line 530, ../sass/_icons.scss */
|
898
|
+
.icon-delete:before {
|
899
|
+
content: "\e119";
|
900
|
+
}
|
901
|
+
|
902
|
+
/* line 534, ../sass/_icons.scss */
|
903
|
+
.icon-menu:before {
|
904
|
+
content: "\e120";
|
905
|
+
}
|
906
|
+
|
907
|
+
/* line 538, ../sass/_icons.scss */
|
908
|
+
.icon-archive:before {
|
909
|
+
content: "\e121";
|
910
|
+
}
|
911
|
+
|
912
|
+
/* line 542, ../sass/_icons.scss */
|
913
|
+
.icon-inbox:before {
|
914
|
+
content: "\e122";
|
915
|
+
}
|
916
|
+
|
917
|
+
/* line 546, ../sass/_icons.scss */
|
918
|
+
.icon-outbox:before {
|
919
|
+
content: "\e123";
|
920
|
+
}
|
921
|
+
|
922
|
+
/* line 550, ../sass/_icons.scss */
|
923
|
+
.icon-file:before {
|
924
|
+
content: "\e124";
|
925
|
+
}
|
926
|
+
|
927
|
+
/* line 554, ../sass/_icons.scss */
|
928
|
+
.icon-file-add:before {
|
929
|
+
content: "\e125";
|
930
|
+
}
|
931
|
+
|
932
|
+
/* line 558, ../sass/_icons.scss */
|
933
|
+
.icon-file-subtract:before {
|
934
|
+
content: "\e126";
|
935
|
+
}
|
936
|
+
|
937
|
+
/* line 562, ../sass/_icons.scss */
|
938
|
+
.icon-help:before {
|
939
|
+
content: "\e127";
|
940
|
+
}
|
941
|
+
|
942
|
+
/* line 566, ../sass/_icons.scss */
|
943
|
+
.icon-open:before {
|
944
|
+
content: "\e128";
|
945
|
+
}
|
946
|
+
|
947
|
+
/* line 570, ../sass/_icons.scss */
|
948
|
+
.icon-ellipsis:before {
|
949
|
+
content: "\e129";
|
950
|
+
}
|
951
|
+
|
952
|
+
/******************************************************
|
953
|
+
* Style Guide
|
954
|
+
******************************************************/
|
955
|
+
/* line 9, ../sass/main.scss */
|
956
|
+
* {
|
957
|
+
box-sizing: border-box;
|
958
|
+
}
|
959
|
+
|
960
|
+
/* line 13, ../sass/main.scss */
|
961
|
+
body {
|
962
|
+
background-color: #EFEFEF;
|
963
|
+
}
|
964
|
+
|
965
|
+
/* line 17, ../sass/main.scss */
|
966
|
+
nav {
|
967
|
+
margin-bottom: 48px;
|
968
|
+
}
|
969
|
+
/* line 19, ../sass/main.scss */
|
970
|
+
nav a {
|
971
|
+
display: inline-block;
|
972
|
+
margin-right: 15px;
|
973
|
+
}
|
974
|
+
|
975
|
+
/* line 25, ../sass/main.scss */
|
976
|
+
.section {
|
977
|
+
width: 100%;
|
978
|
+
padding: 30px 24px;
|
979
|
+
}
|
980
|
+
@media (min-width: 768px) {
|
981
|
+
/* line 25, ../sass/main.scss */
|
982
|
+
.section {
|
983
|
+
padding: 60px;
|
984
|
+
}
|
985
|
+
}
|
986
|
+
|
987
|
+
/* line 33, ../sass/main.scss */
|
988
|
+
.narrow-wrapper {
|
989
|
+
width: 100%;
|
990
|
+
max-width: 575px;
|
991
|
+
}
|
992
|
+
|
993
|
+
/* line 38, ../sass/main.scss */
|
994
|
+
.font-comparison {
|
995
|
+
width: 100%;
|
996
|
+
table-layout: fixed;
|
997
|
+
background-color: #FFFFFF;
|
998
|
+
}
|
999
|
+
|
1000
|
+
/* line 44, ../sass/main.scss */
|
1001
|
+
.font-comparison td, th {
|
1002
|
+
padding: 12px 15px 15px 20px;
|
1003
|
+
vertical-align: top;
|
1004
|
+
position: relative;
|
1005
|
+
width: 100%;
|
1006
|
+
display: block;
|
1007
|
+
border-right: none;
|
1008
|
+
}
|
1009
|
+
@media screen and (min-width: 768px) {
|
1010
|
+
/* line 44, ../sass/main.scss */
|
1011
|
+
.font-comparison td, th {
|
1012
|
+
width: auto;
|
1013
|
+
display: table-cell;
|
1014
|
+
border-right: 1px solid #ededed;
|
1015
|
+
}
|
1016
|
+
}
|
1017
|
+
|
1018
|
+
/* line 59, ../sass/main.scss */
|
1019
|
+
.font-comparison th {
|
1020
|
+
font-family: Verdana, sans-serif;
|
1021
|
+
font-size: 14.24px;
|
1022
|
+
line-height: 1.58427;
|
1023
|
+
border-bottom: 1px solid #ededed;
|
1024
|
+
}
|
1025
|
+
@media screen and (min-width: 768px) {
|
1026
|
+
/* line 59, ../sass/main.scss */
|
1027
|
+
.font-comparison th {
|
1028
|
+
font-size: 16.02px;
|
1029
|
+
line-height: 1.68989;
|
1030
|
+
}
|
1031
|
+
}
|
1032
|
+
|
1033
|
+
/* line 65, ../sass/main.scss */
|
1034
|
+
.font-comparison tr {
|
1035
|
+
border-top: 1px solid #ededed;
|
1036
|
+
border-bottom: 1px solid #ededed;
|
1037
|
+
width: 100%;
|
1038
|
+
}
|
1039
|
+
|
1040
|
+
/* line 71, ../sass/main.scss */
|
1041
|
+
.font-comparison thead {
|
1042
|
+
display: none;
|
1043
|
+
}
|
1044
|
+
@media screen and (min-width: 768px) {
|
1045
|
+
/* line 71, ../sass/main.scss */
|
1046
|
+
.font-comparison thead {
|
1047
|
+
display: table-header-group;
|
1048
|
+
}
|
1049
|
+
}
|
1050
|
+
|
1051
|
+
/* line 79, ../sass/main.scss */
|
1052
|
+
.font-comparison td p {
|
1053
|
+
max-height: 160px;
|
1054
|
+
overflow: hidden;
|
1055
|
+
margin-bottom: 18px;
|
1056
|
+
position: relative;
|
1057
|
+
}
|
1058
|
+
@media screen and (min-width: 768px) {
|
1059
|
+
/* line 79, ../sass/main.scss */
|
1060
|
+
.font-comparison td p {
|
1061
|
+
max-height: 300px;
|
1062
|
+
}
|
1063
|
+
}
|
1064
|
+
/* line 88, ../sass/main.scss */
|
1065
|
+
.font-comparison td p:after {
|
1066
|
+
content: "";
|
1067
|
+
height: 40px;
|
1068
|
+
background-color: white;
|
1069
|
+
position: absolute;
|
1070
|
+
left: 0;
|
1071
|
+
right: 0;
|
1072
|
+
bottom: 0;
|
1073
|
+
background: -moz-linear-gradient(top, rgba(255, 255, 255, 0), white);
|
1074
|
+
/* FF3.6-15 */
|
1075
|
+
background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), white);
|
1076
|
+
/* Chrome10-25,Safari5.1-6 */
|
1077
|
+
background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
|
1078
|
+
/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
1079
|
+
}
|
1080
|
+
|
1081
|
+
/* line 102, ../sass/main.scss */
|
1082
|
+
.font-comparison th:first-child {
|
1083
|
+
border-right: 1px solid #ededed;
|
1084
|
+
text-align: left;
|
1085
|
+
}
|
1086
|
+
@media screen and (min-width: 768px) {
|
1087
|
+
/* line 102, ../sass/main.scss */
|
1088
|
+
.font-comparison th:first-child {
|
1089
|
+
width: 8%;
|
1090
|
+
display: table-cell;
|
1091
|
+
text-align: right;
|
1092
|
+
}
|
1093
|
+
}
|
1094
|
+
|
1095
|
+
@media screen and (min-width: 768px) {
|
1096
|
+
/* line 113, ../sass/main.scss */
|
1097
|
+
.font-comparison th:last-child {
|
1098
|
+
width: 18%;
|
1099
|
+
}
|
1100
|
+
}
|
1101
|
+
|
1102
|
+
/* line 119, ../sass/main.scss */
|
1103
|
+
.metrics {
|
1104
|
+
font-family: Verdana, sans-serif;
|
1105
|
+
font-size: 14.24px;
|
1106
|
+
line-height: 1.58427;
|
1107
|
+
}
|
1108
|
+
@media screen and (min-width: 768px) {
|
1109
|
+
/* line 119, ../sass/main.scss */
|
1110
|
+
.metrics {
|
1111
|
+
font-size: 16.02px;
|
1112
|
+
line-height: 1.68989;
|
1113
|
+
}
|
1114
|
+
}
|
1115
|
+
|
1116
|
+
/* line 126, ../sass/main.scss */
|
1117
|
+
.copy-larger4 {
|
1118
|
+
font-family: Georgia, serif;
|
1119
|
+
font-size: 28.0px;
|
1120
|
+
line-height: 1.35;
|
1121
|
+
}
|
1122
|
+
@media screen and (min-width: 768px) {
|
1123
|
+
/* line 126, ../sass/main.scss */
|
1124
|
+
.copy-larger4 {
|
1125
|
+
font-size: 42px;
|
1126
|
+
line-height: 1.25;
|
1127
|
+
}
|
1128
|
+
}
|
1129
|
+
|
1130
|
+
/* line 130, ../sass/main.scss */
|
1131
|
+
.copy-larger3 {
|
1132
|
+
font-family: Georgia, serif;
|
1133
|
+
font-size: 24.34437px;
|
1134
|
+
line-height: 1.38603;
|
1135
|
+
}
|
1136
|
+
@media screen and (min-width: 768px) {
|
1137
|
+
/* line 130, ../sass/main.scss */
|
1138
|
+
.copy-larger3 {
|
1139
|
+
font-size: 33.98248px;
|
1140
|
+
line-height: 1.32957;
|
1141
|
+
}
|
1142
|
+
}
|
1143
|
+
|
1144
|
+
/* line 134, ../sass/main.scss */
|
1145
|
+
.copy-larger2 {
|
1146
|
+
font-family: Georgia, serif;
|
1147
|
+
font-size: 21.16601px;
|
1148
|
+
line-height: 1.42302;
|
1149
|
+
}
|
1150
|
+
@media screen and (min-width: 768px) {
|
1151
|
+
/* line 134, ../sass/main.scss */
|
1152
|
+
.copy-larger2 {
|
1153
|
+
font-size: 27.49545px;
|
1154
|
+
line-height: 1.41421;
|
1155
|
+
}
|
1156
|
+
}
|
1157
|
+
|
1158
|
+
/* line 140, ../sass/main.scss */
|
1159
|
+
.icon-larger4 {
|
1160
|
+
font-family: 'Feather';
|
1161
|
+
font-size: 26.6px;
|
1162
|
+
line-height: 1.42105;
|
1163
|
+
}
|
1164
|
+
@media screen and (min-width: 768px) {
|
1165
|
+
/* line 140, ../sass/main.scss */
|
1166
|
+
.icon-larger4 {
|
1167
|
+
font-size: 39.9px;
|
1168
|
+
line-height: 1.31579;
|
1169
|
+
}
|
1170
|
+
}
|
1171
|
+
|
1172
|
+
/* line 144, ../sass/main.scss */
|
1173
|
+
.icon-larger3 {
|
1174
|
+
font-family: 'Feather';
|
1175
|
+
font-size: 23.12715px;
|
1176
|
+
line-height: 1.45898;
|
1177
|
+
}
|
1178
|
+
@media screen and (min-width: 768px) {
|
1179
|
+
/* line 144, ../sass/main.scss */
|
1180
|
+
.icon-larger3 {
|
1181
|
+
font-size: 32.28336px;
|
1182
|
+
line-height: 1.39955;
|
1183
|
+
}
|
1184
|
+
}
|
1185
|
+
|
1186
|
+
/* line 148, ../sass/main.scss */
|
1187
|
+
.icon-larger2 {
|
1188
|
+
font-family: 'Feather';
|
1189
|
+
font-size: 20.10771px;
|
1190
|
+
line-height: 1.49792;
|
1191
|
+
}
|
1192
|
+
@media screen and (min-width: 768px) {
|
1193
|
+
/* line 148, ../sass/main.scss */
|
1194
|
+
.icon-larger2 {
|
1195
|
+
font-size: 26.12068px;
|
1196
|
+
line-height: 1.48865;
|
1197
|
+
}
|
1198
|
+
}
|
1199
|
+
|
1200
|
+
/* line 152, ../sass/main.scss */
|
1201
|
+
.icon-larger1 {
|
1202
|
+
font-family: 'Feather';
|
1203
|
+
font-size: 17.48248px;
|
1204
|
+
line-height: 1.5379;
|
1205
|
+
}
|
1206
|
+
@media screen and (min-width: 768px) {
|
1207
|
+
/* line 152, ../sass/main.scss */
|
1208
|
+
.icon-larger1 {
|
1209
|
+
font-size: 21.13442px;
|
1210
|
+
line-height: 1.58341;
|
1211
|
+
}
|
1212
|
+
}
|
1213
|
+
|
1214
|
+
/* line 156, ../sass/main.scss */
|
1215
|
+
.icon-base {
|
1216
|
+
font-family: 'Feather';
|
1217
|
+
font-size: 15.2px;
|
1218
|
+
line-height: 1.57895;
|
1219
|
+
}
|
1220
|
+
@media screen and (min-width: 768px) {
|
1221
|
+
/* line 156, ../sass/main.scss */
|
1222
|
+
.icon-base {
|
1223
|
+
font-size: 17.1px;
|
1224
|
+
line-height: 1.68421;
|
1225
|
+
}
|
1226
|
+
}
|
1227
|
+
|
1228
|
+
/* line 160, ../sass/main.scss */
|
1229
|
+
.icon-smaller {
|
1230
|
+
font-family: Georgia, serif;
|
1231
|
+
font-size: 13.91107px;
|
1232
|
+
line-height: 1.54004;
|
1233
|
+
}
|
1234
|
+
@media screen and (min-width: 768px) {
|
1235
|
+
/* line 160, ../sass/main.scss */
|
1236
|
+
.icon-smaller {
|
1237
|
+
font-size: 14.56392px;
|
1238
|
+
line-height: 1.70185;
|
1239
|
+
}
|
1240
|
+
}
|