tachyonscss-rails 4.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.md +33 -0
- data/README.md +42 -0
- data/Rakefile +43 -0
- data/app/assets/stylesheets/scss/_aspect-ratios.scss +142 -0
- data/app/assets/stylesheets/scss/_background-position.scss +133 -0
- data/app/assets/stylesheets/scss/_background-size.scss +41 -0
- data/app/assets/stylesheets/scss/_border-colors.scss +93 -0
- data/app/assets/stylesheets/scss/_border-radius.scss +134 -0
- data/app/assets/stylesheets/scss/_border-style.scss +55 -0
- data/app/assets/stylesheets/scss/_border-widths.scss +81 -0
- data/app/assets/stylesheets/scss/_borders.scss +65 -0
- data/app/assets/stylesheets/scss/_box-shadow.scss +48 -0
- data/app/assets/stylesheets/scss/_box-sizing.scss +49 -0
- data/app/assets/stylesheets/scss/_clears.scss +47 -0
- data/app/assets/stylesheets/scss/_code.scss +18 -0
- data/app/assets/stylesheets/scss/_coordinates.scss +153 -0
- data/app/assets/stylesheets/scss/_debug-children.scss +21 -0
- data/app/assets/stylesheets/scss/_debug-grid.scss +33 -0
- data/app/assets/stylesheets/scss/_debug.scss +127 -0
- data/app/assets/stylesheets/scss/_debug_children.scss +18 -0
- data/app/assets/stylesheets/scss/_display.scss +111 -0
- data/app/assets/stylesheets/scss/_flexbox.scss +257 -0
- data/app/assets/stylesheets/scss/_floats.scss +56 -0
- data/app/assets/stylesheets/scss/_font-family.scss +99 -0
- data/app/assets/stylesheets/scss/_font-style.scss +36 -0
- data/app/assets/stylesheets/scss/_font-weight.scss +87 -0
- data/app/assets/stylesheets/scss/_forms.scss +23 -0
- data/app/assets/stylesheets/scss/_gradients.scss +29 -0
- data/app/assets/stylesheets/scss/_heights.scss +131 -0
- data/app/assets/stylesheets/scss/_hovers.scss +166 -0
- data/app/assets/stylesheets/scss/_images.scss +18 -0
- data/app/assets/stylesheets/scss/_letter-spacing.scss +40 -0
- data/app/assets/stylesheets/scss/_line-height.scss +41 -0
- data/app/assets/stylesheets/scss/_links.scss +34 -0
- data/app/assets/stylesheets/scss/_lists.scss +15 -0
- data/app/assets/stylesheets/scss/_max-widths.scss +105 -0
- data/app/assets/stylesheets/scss/_module-template.scss +29 -0
- data/app/assets/stylesheets/scss/_negative-margins.scss +205 -0
- data/app/assets/stylesheets/scss/_nested.scss +63 -0
- data/app/assets/stylesheets/scss/_normalize.scss +454 -0
- data/app/assets/stylesheets/scss/_opacity.scss +27 -0
- data/app/assets/stylesheets/scss/_outlines.scss +39 -0
- data/app/assets/stylesheets/scss/_overflow.scss +82 -0
- data/app/assets/stylesheets/scss/_position.scss +44 -0
- data/app/assets/stylesheets/scss/_rotations.scss +50 -0
- data/app/assets/stylesheets/scss/_skins-pseudo.scss +243 -0
- data/app/assets/stylesheets/scss/_skins.scss +143 -0
- data/app/assets/stylesheets/scss/_spacing.scss +947 -0
- data/app/assets/stylesheets/scss/_styles.scss +15 -0
- data/app/assets/stylesheets/scss/_tables.scss +42 -0
- data/app/assets/stylesheets/scss/_text-align.scss +53 -0
- data/app/assets/stylesheets/scss/_text-decoration.scss +42 -0
- data/app/assets/stylesheets/scss/_text-transform.scss +53 -0
- data/app/assets/stylesheets/scss/_type-scale.scss +102 -0
- data/app/assets/stylesheets/scss/_typography.scss +129 -0
- data/app/assets/stylesheets/scss/_utilities.scss +57 -0
- data/app/assets/stylesheets/scss/_variables.scss +143 -0
- data/app/assets/stylesheets/scss/_vertical-align.scss +43 -0
- data/app/assets/stylesheets/scss/_visibility.scss +58 -0
- data/app/assets/stylesheets/scss/_white-space.scss +41 -0
- data/app/assets/stylesheets/scss/_widths.scss +150 -0
- data/app/assets/stylesheets/scss/_word-break.scss +43 -0
- data/app/assets/stylesheets/scss/_z-index.scss +60 -0
- data/app/assets/stylesheets/tachyons.scss +94 -0
- data/lib/tachyonscss-rails/engine.rb +11 -0
- data/lib/tachyonscss-rails/version.rb +3 -0
- data/lib/tachyonscss-rails.rb +5 -0
- metadata +113 -0
@@ -0,0 +1,42 @@
|
|
1
|
+
|
2
|
+
// Converted Variables
|
3
|
+
|
4
|
+
|
5
|
+
// Custom Media Query Variables
|
6
|
+
|
7
|
+
|
8
|
+
/*
|
9
|
+
|
10
|
+
TABLES
|
11
|
+
Docs: http://tachyons.io/docs/elements/tables/
|
12
|
+
|
13
|
+
*/
|
14
|
+
|
15
|
+
.collapse {
|
16
|
+
border-collapse: collapse;
|
17
|
+
border-spacing: 0;
|
18
|
+
}
|
19
|
+
|
20
|
+
.striped--light-silver:nth-child(odd) {
|
21
|
+
background-color: $light-silver;
|
22
|
+
}
|
23
|
+
|
24
|
+
.striped--moon-gray:nth-child(odd) {
|
25
|
+
background-color: $moon-gray;
|
26
|
+
}
|
27
|
+
|
28
|
+
.striped--light-gray:nth-child(odd) {
|
29
|
+
background-color: $light-gray;
|
30
|
+
}
|
31
|
+
|
32
|
+
.striped--near-white:nth-child(odd) {
|
33
|
+
background-color: $near-white;
|
34
|
+
}
|
35
|
+
|
36
|
+
.stripe-light:nth-child(odd) {
|
37
|
+
background-color: $white-10;
|
38
|
+
}
|
39
|
+
|
40
|
+
.stripe-dark:nth-child(odd) {
|
41
|
+
background-color: $black-10;
|
42
|
+
}
|
@@ -0,0 +1,53 @@
|
|
1
|
+
|
2
|
+
// Converted Variables
|
3
|
+
|
4
|
+
|
5
|
+
// Custom Media Query Variables
|
6
|
+
|
7
|
+
|
8
|
+
/*
|
9
|
+
|
10
|
+
TEXT ALIGN
|
11
|
+
Docs: http://tachyons.io/docs/typography/text-align/
|
12
|
+
|
13
|
+
Base
|
14
|
+
t = text-align
|
15
|
+
|
16
|
+
Modifiers
|
17
|
+
l = left
|
18
|
+
r = right
|
19
|
+
c = center
|
20
|
+
j = justify
|
21
|
+
|
22
|
+
Media Query Extensions:
|
23
|
+
-ns = not-small
|
24
|
+
-m = medium
|
25
|
+
-l = large
|
26
|
+
|
27
|
+
*/
|
28
|
+
|
29
|
+
.tl { text-align: left; }
|
30
|
+
.tr { text-align: right; }
|
31
|
+
.tc { text-align: center; }
|
32
|
+
.tj { text-align: justify; }
|
33
|
+
|
34
|
+
@media #{$breakpoint-not-small} {
|
35
|
+
.tl-ns { text-align: left; }
|
36
|
+
.tr-ns { text-align: right; }
|
37
|
+
.tc-ns { text-align: center; }
|
38
|
+
.tj-ns { text-align: justify; }
|
39
|
+
}
|
40
|
+
|
41
|
+
@media #{$breakpoint-medium} {
|
42
|
+
.tl-m { text-align: left; }
|
43
|
+
.tr-m { text-align: right; }
|
44
|
+
.tc-m { text-align: center; }
|
45
|
+
.tj-m { text-align: justify; }
|
46
|
+
}
|
47
|
+
|
48
|
+
@media #{$breakpoint-large} {
|
49
|
+
.tl-l { text-align: left; }
|
50
|
+
.tr-l { text-align: right; }
|
51
|
+
.tc-l { text-align: center; }
|
52
|
+
.tj-l { text-align: justify; }
|
53
|
+
}
|
@@ -0,0 +1,42 @@
|
|
1
|
+
|
2
|
+
// Converted Variables
|
3
|
+
|
4
|
+
|
5
|
+
// Custom Media Query Variables
|
6
|
+
|
7
|
+
|
8
|
+
/*
|
9
|
+
|
10
|
+
TEXT DECORATION
|
11
|
+
Docs: http://tachyons.io/docs/typography/text-decoration/
|
12
|
+
|
13
|
+
|
14
|
+
Media Query Extensions:
|
15
|
+
-ns = not-small
|
16
|
+
-m = medium
|
17
|
+
-l = large
|
18
|
+
|
19
|
+
*/
|
20
|
+
|
21
|
+
.strike { text-decoration: line-through; }
|
22
|
+
.underline { text-decoration: underline; }
|
23
|
+
.no-underline { text-decoration: none; }
|
24
|
+
|
25
|
+
|
26
|
+
@media #{$breakpoint-not-small} {
|
27
|
+
.strike-ns { text-decoration: line-through; }
|
28
|
+
.underline-ns { text-decoration: underline; }
|
29
|
+
.no-underline-ns { text-decoration: none; }
|
30
|
+
}
|
31
|
+
|
32
|
+
@media #{$breakpoint-medium} {
|
33
|
+
.strike-m { text-decoration: line-through; }
|
34
|
+
.underline-m { text-decoration: underline; }
|
35
|
+
.no-underline-m { text-decoration: none; }
|
36
|
+
}
|
37
|
+
|
38
|
+
@media #{$breakpoint-large} {
|
39
|
+
.strike-l { text-decoration: line-through; }
|
40
|
+
.underline-l { text-decoration: underline; }
|
41
|
+
.no-underline-l { text-decoration: none; }
|
42
|
+
}
|
@@ -0,0 +1,53 @@
|
|
1
|
+
|
2
|
+
// Converted Variables
|
3
|
+
|
4
|
+
|
5
|
+
// Custom Media Query Variables
|
6
|
+
|
7
|
+
|
8
|
+
/*
|
9
|
+
|
10
|
+
TEXT TRANSFORM
|
11
|
+
Docs: http://tachyons.io/docs/typography/text-transform/
|
12
|
+
|
13
|
+
Base:
|
14
|
+
tt = text-transform
|
15
|
+
|
16
|
+
Modifiers
|
17
|
+
c = capitalize
|
18
|
+
l = lowercase
|
19
|
+
u = uppercase
|
20
|
+
n = none
|
21
|
+
|
22
|
+
Media Query Extensions:
|
23
|
+
-ns = not-small
|
24
|
+
-m = medium
|
25
|
+
-l = large
|
26
|
+
|
27
|
+
*/
|
28
|
+
|
29
|
+
.ttc { text-transform: capitalize; }
|
30
|
+
.ttl { text-transform: lowercase; }
|
31
|
+
.ttu { text-transform: uppercase; }
|
32
|
+
.ttn { text-transform: none; }
|
33
|
+
|
34
|
+
@media #{$breakpoint-not-small} {
|
35
|
+
.ttc-ns { text-transform: capitalize; }
|
36
|
+
.ttl-ns { text-transform: lowercase; }
|
37
|
+
.ttu-ns { text-transform: uppercase; }
|
38
|
+
.ttn-ns { text-transform: none; }
|
39
|
+
}
|
40
|
+
|
41
|
+
@media #{$breakpoint-medium} {
|
42
|
+
.ttc-m { text-transform: capitalize; }
|
43
|
+
.ttl-m { text-transform: lowercase; }
|
44
|
+
.ttu-m { text-transform: uppercase; }
|
45
|
+
.ttn-m { text-transform: none; }
|
46
|
+
}
|
47
|
+
|
48
|
+
@media #{$breakpoint-large} {
|
49
|
+
.ttc-l { text-transform: capitalize; }
|
50
|
+
.ttl-l { text-transform: lowercase; }
|
51
|
+
.ttu-l { text-transform: uppercase; }
|
52
|
+
.ttn-l { text-transform: none; }
|
53
|
+
}
|
@@ -0,0 +1,102 @@
|
|
1
|
+
|
2
|
+
// Converted Variables
|
3
|
+
|
4
|
+
|
5
|
+
// Custom Media Query Variables
|
6
|
+
|
7
|
+
|
8
|
+
/*
|
9
|
+
|
10
|
+
TYPE SCALE
|
11
|
+
Docs: http://tachyons.io/docs/typography/scale/
|
12
|
+
|
13
|
+
Base:
|
14
|
+
f = font-size
|
15
|
+
|
16
|
+
Modifiers
|
17
|
+
1 = 1st step in size scale
|
18
|
+
2 = 2nd step in size scale
|
19
|
+
3 = 3rd step in size scale
|
20
|
+
4 = 4th step in size scale
|
21
|
+
5 = 5th step in size scale
|
22
|
+
6 = 6th step in size scale
|
23
|
+
|
24
|
+
Media Query Extensions:
|
25
|
+
-ns = not-small
|
26
|
+
-m = medium
|
27
|
+
-l = large
|
28
|
+
*/
|
29
|
+
|
30
|
+
/*
|
31
|
+
* For Hero/Marketing Titles
|
32
|
+
*
|
33
|
+
* These generally are too large for mobile
|
34
|
+
* so be careful using them on smaller screens.
|
35
|
+
* */
|
36
|
+
|
37
|
+
.f-6,
|
38
|
+
.f-headline {
|
39
|
+
font-size: $font-size-headline;
|
40
|
+
}
|
41
|
+
.f-5,
|
42
|
+
.f-subheadline {
|
43
|
+
font-size: $font-size-subheadline;
|
44
|
+
}
|
45
|
+
|
46
|
+
|
47
|
+
/* Type Scale */
|
48
|
+
|
49
|
+
|
50
|
+
.f1 { font-size: $font-size-1; }
|
51
|
+
.f2 { font-size: $font-size-2; }
|
52
|
+
.f3 { font-size: $font-size-3; }
|
53
|
+
.f4 { font-size: $font-size-4; }
|
54
|
+
.f5 { font-size: $font-size-5; }
|
55
|
+
.f6 { font-size: $font-size-6; }
|
56
|
+
.f7 { font-size: $font-size-7; }
|
57
|
+
|
58
|
+
@media #{$breakpoint-not-small}{
|
59
|
+
.f-6-ns,
|
60
|
+
.f-headline-ns { font-size: $font-size-headline; }
|
61
|
+
.f-5-ns,
|
62
|
+
.f-subheadline-ns { font-size: $font-size-subheadline; }
|
63
|
+
.f1-ns { font-size: $font-size-1; }
|
64
|
+
.f2-ns { font-size: $font-size-2; }
|
65
|
+
.f3-ns { font-size: $font-size-3; }
|
66
|
+
.f4-ns { font-size: $font-size-4; }
|
67
|
+
.f5-ns { font-size: $font-size-5; }
|
68
|
+
.f6-ns { font-size: $font-size-6; }
|
69
|
+
.f7-ns { font-size: $font-size-7; }
|
70
|
+
}
|
71
|
+
|
72
|
+
@media #{$breakpoint-medium} {
|
73
|
+
.f-6-m,
|
74
|
+
.f-headline-m { font-size: $font-size-headline; }
|
75
|
+
.f-5-m,
|
76
|
+
.f-subheadline-m { font-size: $font-size-subheadline; }
|
77
|
+
.f1-m { font-size: $font-size-1; }
|
78
|
+
.f2-m { font-size: $font-size-2; }
|
79
|
+
.f3-m { font-size: $font-size-3; }
|
80
|
+
.f4-m { font-size: $font-size-4; }
|
81
|
+
.f5-m { font-size: $font-size-5; }
|
82
|
+
.f6-m { font-size: $font-size-6; }
|
83
|
+
.f7-m { font-size: $font-size-7; }
|
84
|
+
}
|
85
|
+
|
86
|
+
@media #{$breakpoint-large} {
|
87
|
+
.f-6-l,
|
88
|
+
.f-headline-l {
|
89
|
+
font-size: $font-size-headline;
|
90
|
+
}
|
91
|
+
.f-5-l,
|
92
|
+
.f-subheadline-l {
|
93
|
+
font-size: $font-size-subheadline;
|
94
|
+
}
|
95
|
+
.f1-l { font-size: $font-size-1; }
|
96
|
+
.f2-l { font-size: $font-size-2; }
|
97
|
+
.f3-l { font-size: $font-size-3; }
|
98
|
+
.f4-l { font-size: $font-size-4; }
|
99
|
+
.f5-l { font-size: $font-size-5; }
|
100
|
+
.f6-l { font-size: $font-size-6; }
|
101
|
+
.f7-l { font-size: $font-size-7; }
|
102
|
+
}
|
@@ -0,0 +1,129 @@
|
|
1
|
+
|
2
|
+
// Converted Variables
|
3
|
+
|
4
|
+
|
5
|
+
// Custom Media Query Variables
|
6
|
+
|
7
|
+
|
8
|
+
/*
|
9
|
+
|
10
|
+
TYPOGRAPHY
|
11
|
+
http://tachyons.io/docs/typography/measure/
|
12
|
+
|
13
|
+
Media Query Extensions:
|
14
|
+
-ns = not-small
|
15
|
+
-m = medium
|
16
|
+
-l = large
|
17
|
+
|
18
|
+
*/
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
/* Measure is limited to ~66 characters */
|
23
|
+
.measure {
|
24
|
+
max-width: $measure;
|
25
|
+
}
|
26
|
+
|
27
|
+
/* Measure is limited to ~80 characters */
|
28
|
+
.measure-wide {
|
29
|
+
max-width: $measure-wide;
|
30
|
+
}
|
31
|
+
|
32
|
+
/* Measure is limited to ~45 characters */
|
33
|
+
.measure-narrow {
|
34
|
+
max-width: $measure-narrow;
|
35
|
+
}
|
36
|
+
|
37
|
+
/* Book paragraph style - paragraphs are indented with no vertical spacing. */
|
38
|
+
.indent {
|
39
|
+
text-indent: 1em;
|
40
|
+
margin-top: 0;
|
41
|
+
margin-bottom: 0;
|
42
|
+
}
|
43
|
+
|
44
|
+
.small-caps {
|
45
|
+
font-variant: small-caps;
|
46
|
+
}
|
47
|
+
|
48
|
+
/* Combine this class with a width to truncate text (or just leave as is to truncate at width of containing element. */
|
49
|
+
|
50
|
+
.truncate {
|
51
|
+
white-space: nowrap;
|
52
|
+
overflow: hidden;
|
53
|
+
text-overflow: ellipsis;
|
54
|
+
}
|
55
|
+
|
56
|
+
@media #{$breakpoint-not-small} {
|
57
|
+
.measure-ns {
|
58
|
+
max-width: $measure;
|
59
|
+
}
|
60
|
+
.measure-wide-ns {
|
61
|
+
max-width: $measure-wide;
|
62
|
+
}
|
63
|
+
.measure-narrow-ns {
|
64
|
+
max-width: $measure-narrow;
|
65
|
+
}
|
66
|
+
.indent-ns {
|
67
|
+
text-indent: 1em;
|
68
|
+
margin-top: 0;
|
69
|
+
margin-bottom: 0;
|
70
|
+
}
|
71
|
+
.small-caps-ns {
|
72
|
+
font-variant: small-caps;
|
73
|
+
}
|
74
|
+
.truncate-ns {
|
75
|
+
white-space: nowrap;
|
76
|
+
overflow: hidden;
|
77
|
+
text-overflow: ellipsis;
|
78
|
+
}
|
79
|
+
}
|
80
|
+
|
81
|
+
@media #{$breakpoint-medium} {
|
82
|
+
.measure-m {
|
83
|
+
max-width: $measure;
|
84
|
+
}
|
85
|
+
.measure-wide-m {
|
86
|
+
max-width: $measure-wide;
|
87
|
+
}
|
88
|
+
.measure-narrow-m {
|
89
|
+
max-width: $measure-narrow;
|
90
|
+
}
|
91
|
+
.indent-m {
|
92
|
+
text-indent: 1em;
|
93
|
+
margin-top: 0;
|
94
|
+
margin-bottom: 0;
|
95
|
+
}
|
96
|
+
.small-caps-m {
|
97
|
+
font-variant: small-caps;
|
98
|
+
}
|
99
|
+
.truncate-m {
|
100
|
+
white-space: nowrap;
|
101
|
+
overflow: hidden;
|
102
|
+
text-overflow: ellipsis;
|
103
|
+
}
|
104
|
+
}
|
105
|
+
|
106
|
+
@media #{$breakpoint-large} {
|
107
|
+
.measure-l {
|
108
|
+
max-width: $measure;
|
109
|
+
}
|
110
|
+
.measure-wide-l {
|
111
|
+
max-width: $measure-wide;
|
112
|
+
}
|
113
|
+
.measure-narrow-l {
|
114
|
+
max-width: $measure-narrow;
|
115
|
+
}
|
116
|
+
.indent-l {
|
117
|
+
text-indent: 1em;
|
118
|
+
margin-top: 0;
|
119
|
+
margin-bottom: 0;
|
120
|
+
}
|
121
|
+
.small-caps-l {
|
122
|
+
font-variant: small-caps;
|
123
|
+
}
|
124
|
+
.truncate-l {
|
125
|
+
white-space: nowrap;
|
126
|
+
overflow: hidden;
|
127
|
+
text-overflow: ellipsis;
|
128
|
+
}
|
129
|
+
}
|
@@ -0,0 +1,57 @@
|
|
1
|
+
|
2
|
+
// Converted Variables
|
3
|
+
|
4
|
+
|
5
|
+
// Custom Media Query Variables
|
6
|
+
|
7
|
+
|
8
|
+
/*
|
9
|
+
|
10
|
+
UTILITIES
|
11
|
+
|
12
|
+
Media Query Extensions:
|
13
|
+
-ns = not-small
|
14
|
+
-m = medium
|
15
|
+
-l = large
|
16
|
+
|
17
|
+
*/
|
18
|
+
|
19
|
+
/* Equivalent to .overflow-y-scroll */
|
20
|
+
.overflow-container {
|
21
|
+
overflow-y: scroll;
|
22
|
+
}
|
23
|
+
|
24
|
+
.center {
|
25
|
+
margin-right: auto;
|
26
|
+
margin-left: auto;
|
27
|
+
}
|
28
|
+
|
29
|
+
.mr-auto { margin-right: auto; }
|
30
|
+
.ml-auto { margin-left: auto; }
|
31
|
+
|
32
|
+
@media #{$breakpoint-not-small}{
|
33
|
+
.center-ns {
|
34
|
+
margin-right: auto;
|
35
|
+
margin-left: auto;
|
36
|
+
}
|
37
|
+
.mr-auto-ns { margin-right: auto; }
|
38
|
+
.ml-auto-ns { margin-left: auto; }
|
39
|
+
}
|
40
|
+
|
41
|
+
@media #{$breakpoint-medium}{
|
42
|
+
.center-m {
|
43
|
+
margin-right: auto;
|
44
|
+
margin-left: auto;
|
45
|
+
}
|
46
|
+
.mr-auto-m { margin-right: auto; }
|
47
|
+
.ml-auto-m { margin-left: auto; }
|
48
|
+
}
|
49
|
+
|
50
|
+
@media #{$breakpoint-large}{
|
51
|
+
.center-l {
|
52
|
+
margin-right: auto;
|
53
|
+
margin-left: auto;
|
54
|
+
}
|
55
|
+
.mr-auto-l { margin-right: auto; }
|
56
|
+
.ml-auto-l { margin-left: auto; }
|
57
|
+
}
|
@@ -0,0 +1,143 @@
|
|
1
|
+
|
2
|
+
// Converted Variables
|
3
|
+
|
4
|
+
$sans-serif: -apple-system, BlinkMacSystemFont, 'avenir next', avenir, helvetica, 'helvetica neue', ubuntu, roboto, noto, 'segoe ui', arial, sans-serif !default;
|
5
|
+
$serif: georgia, serif !default;
|
6
|
+
$code: consolas, monaco, monospace !default;
|
7
|
+
$font-size-headline: 6rem !default;
|
8
|
+
$font-size-subheadline: 5rem !default;
|
9
|
+
$font-size-1: 3rem !default;
|
10
|
+
$font-size-2: 2.25rem !default;
|
11
|
+
$font-size-3: 1.5rem !default;
|
12
|
+
$font-size-4: 1.25rem !default;
|
13
|
+
$font-size-5: 1rem !default;
|
14
|
+
$font-size-6: .875rem !default;
|
15
|
+
$font-size-7: .75rem !default;
|
16
|
+
$letter-spacing-tight: -.05em !default;
|
17
|
+
$letter-spacing-1: .1em !default;
|
18
|
+
$letter-spacing-2: .25em !default;
|
19
|
+
$line-height-solid: 1 !default;
|
20
|
+
$line-height-title: 1.25 !default;
|
21
|
+
$line-height-copy: 1.5 !default;
|
22
|
+
$measure: 30em !default;
|
23
|
+
$measure-narrow: 20em !default;
|
24
|
+
$measure-wide: 34em !default;
|
25
|
+
$spacing-none: 0 !default;
|
26
|
+
$spacing-extra-small: .25rem !default;
|
27
|
+
$spacing-small: .5rem !default;
|
28
|
+
$spacing-medium: 1rem !default;
|
29
|
+
$spacing-large: 2rem !default;
|
30
|
+
$spacing-extra-large: 4rem !default;
|
31
|
+
$spacing-extra-extra-large: 8rem !default;
|
32
|
+
$spacing-extra-extra-extra-large: 16rem !default;
|
33
|
+
$spacing-copy-separator: 1.5em !default;
|
34
|
+
$height-1: 1rem !default;
|
35
|
+
$height-2: 2rem !default;
|
36
|
+
$height-3: 4rem !default;
|
37
|
+
$height-4: 8rem !default;
|
38
|
+
$height-5: 16rem !default;
|
39
|
+
$width-1: 1rem !default;
|
40
|
+
$width-2: 2rem !default;
|
41
|
+
$width-3: 4rem !default;
|
42
|
+
$width-4: 8rem !default;
|
43
|
+
$width-5: 16rem !default;
|
44
|
+
$max-width-1: 1rem !default;
|
45
|
+
$max-width-2: 2rem !default;
|
46
|
+
$max-width-3: 4rem !default;
|
47
|
+
$max-width-4: 8rem !default;
|
48
|
+
$max-width-5: 16rem !default;
|
49
|
+
$max-width-6: 32rem !default;
|
50
|
+
$max-width-7: 48rem !default;
|
51
|
+
$max-width-8: 64rem !default;
|
52
|
+
$max-width-9: 96rem !default;
|
53
|
+
$border-radius-none: 0 !default;
|
54
|
+
$border-radius-1: .125rem !default;
|
55
|
+
$border-radius-2: .25rem !default;
|
56
|
+
$border-radius-3: .5rem !default;
|
57
|
+
$border-radius-4: 1rem !default;
|
58
|
+
$border-radius-circle: 100% !default;
|
59
|
+
$border-radius-pill: 9999px !default;
|
60
|
+
$border-width-none: 0 !default;
|
61
|
+
$border-width-1: .125rem !default;
|
62
|
+
$border-width-2: .25rem !default;
|
63
|
+
$border-width-3: .5rem !default;
|
64
|
+
$border-width-4: 1rem !default;
|
65
|
+
$border-width-5: 2rem !default;
|
66
|
+
$box-shadow-1: 0px 0px 4px 2px rgba( 0, 0, 0, 0.2 ) !default;
|
67
|
+
$box-shadow-2: 0px 0px 8px 2px rgba( 0, 0, 0, 0.2 ) !default;
|
68
|
+
$box-shadow-3: 2px 2px 4px 2px rgba( 0, 0, 0, 0.2 ) !default;
|
69
|
+
$box-shadow-4: 2px 2px 8px 0px rgba( 0, 0, 0, 0.2 ) !default;
|
70
|
+
$box-shadow-5: 4px 4px 8px 0px rgba( 0, 0, 0, 0.2 ) !default;
|
71
|
+
$black: #000 !default;
|
72
|
+
$near-black: #111 !default;
|
73
|
+
$dark-gray: #333 !default;
|
74
|
+
$mid-gray: #555 !default;
|
75
|
+
$gray: #777 !default;
|
76
|
+
$silver: #999 !default;
|
77
|
+
$light-silver: #aaa !default;
|
78
|
+
$moon-gray: #ccc !default;
|
79
|
+
$light-gray: #eee !default;
|
80
|
+
$near-white: #f4f4f4 !default;
|
81
|
+
$white: #fff !default;
|
82
|
+
$transparent: transparent !default;
|
83
|
+
$black-90: rgba(0,0,0,.9) !default;
|
84
|
+
$black-80: rgba(0,0,0,.8) !default;
|
85
|
+
$black-70: rgba(0,0,0,.7) !default;
|
86
|
+
$black-60: rgba(0,0,0,.6) !default;
|
87
|
+
$black-50: rgba(0,0,0,.5) !default;
|
88
|
+
$black-40: rgba(0,0,0,.4) !default;
|
89
|
+
$black-30: rgba(0,0,0,.3) !default;
|
90
|
+
$black-20: rgba(0,0,0,.2) !default;
|
91
|
+
$black-10: rgba(0,0,0,.1) !default;
|
92
|
+
$black-05: rgba(0,0,0,.05) !default;
|
93
|
+
$black-025: rgba(0,0,0,.025) !default;
|
94
|
+
$black-0125: rgba(0,0,0,.0125) !default;
|
95
|
+
$white-90: rgba(255,255,255,.9) !default;
|
96
|
+
$white-80: rgba(255,255,255,.8) !default;
|
97
|
+
$white-70: rgba(255,255,255,.7) !default;
|
98
|
+
$white-60: rgba(255,255,255,.6) !default;
|
99
|
+
$white-50: rgba(255,255,255,.5) !default;
|
100
|
+
$white-40: rgba(255,255,255,.4) !default;
|
101
|
+
$white-30: rgba(255,255,255,.3) !default;
|
102
|
+
$white-20: rgba(255,255,255,.2) !default;
|
103
|
+
$white-10: rgba(255,255,255,.1) !default;
|
104
|
+
$white-05: rgba(255,255,255,.05) !default;
|
105
|
+
$white-025: rgba(255,255,255,.025) !default;
|
106
|
+
$white-0125: rgba(255,255,255,.0125) !default;
|
107
|
+
$dark-red: #e7040f !default;
|
108
|
+
$red: #ff4136 !default;
|
109
|
+
$light-red: #ff725c !default;
|
110
|
+
$orange: #ff6300 !default;
|
111
|
+
$gold: #ffb700 !default;
|
112
|
+
$yellow: #ffd700 !default;
|
113
|
+
$light-yellow: #fbf1a9 !default;
|
114
|
+
$purple: #5e2ca5 !default;
|
115
|
+
$light-purple: #a463f2 !default;
|
116
|
+
$dark-pink: #d5008f !default;
|
117
|
+
$hot-pink: #ff41b4 !default;
|
118
|
+
$pink: #ff80cc !default;
|
119
|
+
$light-pink: #ffa3d7 !default;
|
120
|
+
$dark-green: #137752 !default;
|
121
|
+
$green: #19a974 !default;
|
122
|
+
$light-green: #9eebcf !default;
|
123
|
+
$navy: #001b44 !default;
|
124
|
+
$dark-blue: #00449e !default;
|
125
|
+
$blue: #357edd !default;
|
126
|
+
$light-blue: #96ccff !default;
|
127
|
+
$lightest-blue: #cdecff !default;
|
128
|
+
$washed-blue: #f6fffe !default;
|
129
|
+
$washed-green: #e8fdf5 !default;
|
130
|
+
$washed-yellow: #fffceb !default;
|
131
|
+
$washed-red: #ffdfdf !default;
|
132
|
+
|
133
|
+
// Custom Media Query Variables
|
134
|
+
|
135
|
+
$breakpoint-not-small: 'screen and (min-width: 30em)' !default;
|
136
|
+
$breakpoint-medium: 'screen and (min-width: 30em) and (max-width: 60em)' !default;
|
137
|
+
$breakpoint-large: 'screen and (min-width: 60em)' !default;
|
138
|
+
|
139
|
+
/*
|
140
|
+
|
141
|
+
VARIABLES
|
142
|
+
|
143
|
+
*/
|
@@ -0,0 +1,43 @@
|
|
1
|
+
|
2
|
+
// Converted Variables
|
3
|
+
|
4
|
+
|
5
|
+
// Custom Media Query Variables
|
6
|
+
|
7
|
+
|
8
|
+
/*
|
9
|
+
|
10
|
+
VERTICAL ALIGN
|
11
|
+
|
12
|
+
Media Query Extensions:
|
13
|
+
-ns = not-small
|
14
|
+
-m = medium
|
15
|
+
-l = large
|
16
|
+
|
17
|
+
*/
|
18
|
+
|
19
|
+
.v-base { vertical-align: baseline; }
|
20
|
+
.v-mid { vertical-align: middle; }
|
21
|
+
.v-top { vertical-align: top; }
|
22
|
+
.v-btm { vertical-align: bottom; }
|
23
|
+
|
24
|
+
@media #{$breakpoint-not-small} {
|
25
|
+
.v-base-ns { vertical-align: baseline; }
|
26
|
+
.v-mid-ns { vertical-align: middle; }
|
27
|
+
.v-top-ns { vertical-align: top; }
|
28
|
+
.v-btm-ns { vertical-align: bottom; }
|
29
|
+
}
|
30
|
+
|
31
|
+
@media #{$breakpoint-medium} {
|
32
|
+
.v-base-m { vertical-align: baseline; }
|
33
|
+
.v-mid-m { vertical-align: middle; }
|
34
|
+
.v-top-m { vertical-align: top; }
|
35
|
+
.v-btm-m { vertical-align: bottom; }
|
36
|
+
}
|
37
|
+
|
38
|
+
@media #{$breakpoint-large} {
|
39
|
+
.v-base-l { vertical-align: baseline; }
|
40
|
+
.v-mid-l { vertical-align: middle; }
|
41
|
+
.v-top-l { vertical-align: top; }
|
42
|
+
.v-btm-l { vertical-align: bottom; }
|
43
|
+
}
|