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,243 @@
|
|
1
|
+
|
2
|
+
// Converted Variables
|
3
|
+
|
4
|
+
|
5
|
+
// Custom Media Query Variables
|
6
|
+
|
7
|
+
|
8
|
+
/*
|
9
|
+
|
10
|
+
SKINS:PSEUDO
|
11
|
+
|
12
|
+
Customize the color of an element when
|
13
|
+
it is focused or hovered over.
|
14
|
+
|
15
|
+
*/
|
16
|
+
|
17
|
+
.hover-black:hover,
|
18
|
+
.hover-black:focus { color: $black; }
|
19
|
+
.hover-near-black:hover,
|
20
|
+
.hover-near-black:focus { color: $near-black; }
|
21
|
+
.hover-dark-gray:hover,
|
22
|
+
.hover-dark-gray:focus { color: $dark-gray; }
|
23
|
+
.hover-mid-gray:hover,
|
24
|
+
.hover-mid-gray:focus { color: $mid-gray; }
|
25
|
+
.hover-gray:hover,
|
26
|
+
.hover-gray:focus { color: $gray; }
|
27
|
+
.hover-silver:hover,
|
28
|
+
.hover-silver:focus { color: $silver; }
|
29
|
+
.hover-light-silver:hover,
|
30
|
+
.hover-light-silver:focus { color: $light-silver; }
|
31
|
+
.hover-moon-gray:hover,
|
32
|
+
.hover-moon-gray:focus { color: $moon-gray; }
|
33
|
+
.hover-light-gray:hover,
|
34
|
+
.hover-light-gray:focus { color: $light-gray; }
|
35
|
+
.hover-near-white:hover,
|
36
|
+
.hover-near-white:focus { color: $near-white; }
|
37
|
+
.hover-white:hover,
|
38
|
+
.hover-white:focus { color: $white; }
|
39
|
+
|
40
|
+
.hover-black-90:hover,
|
41
|
+
.hover-black-90:focus { color: $black-90; }
|
42
|
+
.hover-black-80:hover,
|
43
|
+
.hover-black-80:focus { color: $black-80; }
|
44
|
+
.hover-black-70:hover,
|
45
|
+
.hover-black-70:focus { color: $black-70; }
|
46
|
+
.hover-black-60:hover,
|
47
|
+
.hover-black-60:focus { color: $black-60; }
|
48
|
+
.hover-black-50:hover,
|
49
|
+
.hover-black-50:focus { color: $black-50; }
|
50
|
+
.hover-black-40:hover,
|
51
|
+
.hover-black-40:focus { color: $black-40; }
|
52
|
+
.hover-black-30:hover,
|
53
|
+
.hover-black-30:focus { color: $black-30; }
|
54
|
+
.hover-black-20:hover,
|
55
|
+
.hover-black-20:focus { color: $black-20; }
|
56
|
+
.hover-black-10:hover,
|
57
|
+
.hover-black-10:focus { color: $black-10; }
|
58
|
+
.hover-white-90:hover,
|
59
|
+
.hover-white-90:focus { color: $white-90; }
|
60
|
+
.hover-white-80:hover,
|
61
|
+
.hover-white-80:focus { color: $white-80; }
|
62
|
+
.hover-white-70:hover,
|
63
|
+
.hover-white-70:focus { color: $white-70; }
|
64
|
+
.hover-white-60:hover,
|
65
|
+
.hover-white-60:focus { color: $white-60; }
|
66
|
+
.hover-white-50:hover,
|
67
|
+
.hover-white-50:focus { color: $white-50; }
|
68
|
+
.hover-white-40:hover,
|
69
|
+
.hover-white-40:focus { color: $white-40; }
|
70
|
+
.hover-white-30:hover,
|
71
|
+
.hover-white-30:focus { color: $white-30; }
|
72
|
+
.hover-white-20:hover,
|
73
|
+
.hover-white-20:focus { color: $white-20; }
|
74
|
+
.hover-white-10:hover,
|
75
|
+
.hover-white-10:focus { color: $white-10; }
|
76
|
+
.hover-inherit:hover,
|
77
|
+
.hover-inherit:focus { color: inherit; }
|
78
|
+
|
79
|
+
.hover-bg-black:hover,
|
80
|
+
.hover-bg-black:focus { background-color: $black; }
|
81
|
+
.hover-bg-near-black:hover,
|
82
|
+
.hover-bg-near-black:focus { background-color: $near-black; }
|
83
|
+
.hover-bg-dark-gray:hover,
|
84
|
+
.hover-bg-dark-gray:focus { background-color: $dark-gray; }
|
85
|
+
.hover-bg-mid-gray:hover,
|
86
|
+
.hover-bg-mid-gray:focus { background-color: $mid-gray; }
|
87
|
+
.hover-bg-gray:hover,
|
88
|
+
.hover-bg-gray:focus { background-color: $gray; }
|
89
|
+
.hover-bg-silver:hover,
|
90
|
+
.hover-bg-silver:focus { background-color: $silver; }
|
91
|
+
.hover-bg-light-silver:hover,
|
92
|
+
.hover-bg-light-silver:focus { background-color: $light-silver; }
|
93
|
+
.hover-bg-moon-gray:hover,
|
94
|
+
.hover-bg-moon-gray:focus { background-color: $moon-gray; }
|
95
|
+
.hover-bg-light-gray:hover,
|
96
|
+
.hover-bg-light-gray:focus { background-color: $light-gray; }
|
97
|
+
.hover-bg-near-white:hover,
|
98
|
+
.hover-bg-near-white:focus { background-color: $near-white; }
|
99
|
+
.hover-bg-white:hover,
|
100
|
+
.hover-bg-white:focus { background-color: $white; }
|
101
|
+
.hover-bg-transparent:hover,
|
102
|
+
.hover-bg-transparent:focus { background-color: $transparent; }
|
103
|
+
|
104
|
+
.hover-bg-black-90:hover,
|
105
|
+
.hover-bg-black-90:focus { background-color: $black-90; }
|
106
|
+
.hover-bg-black-80:hover,
|
107
|
+
.hover-bg-black-80:focus { background-color: $black-80; }
|
108
|
+
.hover-bg-black-70:hover,
|
109
|
+
.hover-bg-black-70:focus { background-color: $black-70; }
|
110
|
+
.hover-bg-black-60:hover,
|
111
|
+
.hover-bg-black-60:focus { background-color: $black-60; }
|
112
|
+
.hover-bg-black-50:hover,
|
113
|
+
.hover-bg-black-50:focus { background-color: $black-50; }
|
114
|
+
.hover-bg-black-40:hover,
|
115
|
+
.hover-bg-black-40:focus { background-color: $black-40; }
|
116
|
+
.hover-bg-black-30:hover,
|
117
|
+
.hover-bg-black-30:focus { background-color: $black-30; }
|
118
|
+
.hover-bg-black-20:hover,
|
119
|
+
.hover-bg-black-20:focus { background-color: $black-20; }
|
120
|
+
.hover-bg-black-10:hover,
|
121
|
+
.hover-bg-black-10:focus { background-color: $black-10; }
|
122
|
+
.hover-bg-white-90:hover,
|
123
|
+
.hover-bg-white-90:focus { background-color: $white-90; }
|
124
|
+
.hover-bg-white-80:hover,
|
125
|
+
.hover-bg-white-80:focus { background-color: $white-80; }
|
126
|
+
.hover-bg-white-70:hover,
|
127
|
+
.hover-bg-white-70:focus { background-color: $white-70; }
|
128
|
+
.hover-bg-white-60:hover,
|
129
|
+
.hover-bg-white-60:focus { background-color: $white-60; }
|
130
|
+
.hover-bg-white-50:hover,
|
131
|
+
.hover-bg-white-50:focus { background-color: $white-50; }
|
132
|
+
.hover-bg-white-40:hover,
|
133
|
+
.hover-bg-white-40:focus { background-color: $white-40; }
|
134
|
+
.hover-bg-white-30:hover,
|
135
|
+
.hover-bg-white-30:focus { background-color: $white-30; }
|
136
|
+
.hover-bg-white-20:hover,
|
137
|
+
.hover-bg-white-20:focus { background-color: $white-20; }
|
138
|
+
.hover-bg-white-10:hover,
|
139
|
+
.hover-bg-white-10:focus { background-color: $white-10; }
|
140
|
+
|
141
|
+
.hover-dark-red:hover,
|
142
|
+
.hover-dark-red:focus { color: $dark-red; }
|
143
|
+
.hover-red:hover,
|
144
|
+
.hover-red:focus { color: $red; }
|
145
|
+
.hover-light-red:hover,
|
146
|
+
.hover-light-red:focus { color: $light-red; }
|
147
|
+
.hover-orange:hover,
|
148
|
+
.hover-orange:focus { color: $orange; }
|
149
|
+
.hover-gold:hover,
|
150
|
+
.hover-gold:focus { color: $gold; }
|
151
|
+
.hover-yellow:hover,
|
152
|
+
.hover-yellow:focus { color: $yellow; }
|
153
|
+
.hover-light-yellow:hover,
|
154
|
+
.hover-light-yellow:focus { color: $light-yellow; }
|
155
|
+
.hover-purple:hover,
|
156
|
+
.hover-purple:focus { color: $purple; }
|
157
|
+
.hover-light-purple:hover,
|
158
|
+
.hover-light-purple:focus { color: $light-purple; }
|
159
|
+
.hover-dark-pink:hover,
|
160
|
+
.hover-dark-pink:focus { color: $dark-pink; }
|
161
|
+
.hover-hot-pink:hover,
|
162
|
+
.hover-hot-pink:focus { color: $hot-pink; }
|
163
|
+
.hover-pink:hover,
|
164
|
+
.hover-pink:focus { color: $pink; }
|
165
|
+
.hover-light-pink:hover,
|
166
|
+
.hover-light-pink:focus { color: $light-pink; }
|
167
|
+
.hover-dark-green:hover,
|
168
|
+
.hover-dark-green:focus { color: $dark-green; }
|
169
|
+
.hover-green:hover,
|
170
|
+
.hover-green:focus { color: $green; }
|
171
|
+
.hover-light-green:hover,
|
172
|
+
.hover-light-green:focus { color: $light-green; }
|
173
|
+
.hover-navy:hover,
|
174
|
+
.hover-navy:focus { color: $navy; }
|
175
|
+
.hover-dark-blue:hover,
|
176
|
+
.hover-dark-blue:focus { color: $dark-blue; }
|
177
|
+
.hover-blue:hover,
|
178
|
+
.hover-blue:focus { color: $blue; }
|
179
|
+
.hover-light-blue:hover,
|
180
|
+
.hover-light-blue:focus { color: $light-blue; }
|
181
|
+
.hover-lightest-blue:hover,
|
182
|
+
.hover-lightest-blue:focus { color: $lightest-blue; }
|
183
|
+
.hover-washed-blue:hover,
|
184
|
+
.hover-washed-blue:focus { color: $washed-blue; }
|
185
|
+
.hover-washed-green:hover,
|
186
|
+
.hover-washed-green:focus { color: $washed-green; }
|
187
|
+
.hover-washed-yellow:hover,
|
188
|
+
.hover-washed-yellow:focus { color: $washed-yellow; }
|
189
|
+
.hover-washed-red:hover,
|
190
|
+
.hover-washed-red:focus { color: $washed-red; }
|
191
|
+
|
192
|
+
.hover-bg-dark-red:hover,
|
193
|
+
.hover-bg-dark-red:focus { background-color: $dark-red; }
|
194
|
+
.hover-bg-red:hover,
|
195
|
+
.hover-bg-red:focus { background-color: $red; }
|
196
|
+
.hover-bg-light-red:hover,
|
197
|
+
.hover-bg-light-red:focus { background-color: $light-red; }
|
198
|
+
.hover-bg-orange:hover,
|
199
|
+
.hover-bg-orange:focus { background-color: $orange; }
|
200
|
+
.hover-bg-gold:hover,
|
201
|
+
.hover-bg-gold:focus { background-color: $gold; }
|
202
|
+
.hover-bg-yellow:hover,
|
203
|
+
.hover-bg-yellow:focus { background-color: $yellow; }
|
204
|
+
.hover-bg-light-yellow:hover,
|
205
|
+
.hover-bg-light-yellow:focus { background-color: $light-yellow; }
|
206
|
+
.hover-bg-purple:hover,
|
207
|
+
.hover-bg-purple:focus { background-color: $purple; }
|
208
|
+
.hover-bg-light-purple:hover,
|
209
|
+
.hover-bg-light-purple:focus { background-color: $light-purple; }
|
210
|
+
.hover-bg-dark-pink:hover,
|
211
|
+
.hover-bg-dark-pink:focus { background-color: $dark-pink; }
|
212
|
+
.hover-bg-hot-pink:hover,
|
213
|
+
.hover-bg-hot-pink:focus { background-color: $hot-pink; }
|
214
|
+
.hover-bg-pink:hover,
|
215
|
+
.hover-bg-pink:focus { background-color: $pink; }
|
216
|
+
.hover-bg-light-pink:hover,
|
217
|
+
.hover-bg-light-pink:focus { background-color: $light-pink; }
|
218
|
+
.hover-bg-dark-green:hover,
|
219
|
+
.hover-bg-dark-green:focus { background-color: $dark-green; }
|
220
|
+
.hover-bg-green:hover,
|
221
|
+
.hover-bg-green:focus { background-color: $green; }
|
222
|
+
.hover-bg-light-green:hover,
|
223
|
+
.hover-bg-light-green:focus { background-color: $light-green; }
|
224
|
+
.hover-bg-navy:hover,
|
225
|
+
.hover-bg-navy:focus { background-color: $navy; }
|
226
|
+
.hover-bg-dark-blue:hover,
|
227
|
+
.hover-bg-dark-blue:focus { background-color: $dark-blue; }
|
228
|
+
.hover-bg-blue:hover,
|
229
|
+
.hover-bg-blue:focus { background-color: $blue; }
|
230
|
+
.hover-bg-light-blue:hover,
|
231
|
+
.hover-bg-light-blue:focus { background-color: $light-blue; }
|
232
|
+
.hover-bg-lightest-blue:hover,
|
233
|
+
.hover-bg-lightest-blue:focus { background-color: $lightest-blue; }
|
234
|
+
.hover-bg-washed-blue:hover,
|
235
|
+
.hover-bg-washed-blue:focus { background-color: $washed-blue; }
|
236
|
+
.hover-bg-washed-green:hover,
|
237
|
+
.hover-bg-washed-green:focus { background-color: $washed-green; }
|
238
|
+
.hover-bg-washed-yellow:hover,
|
239
|
+
.hover-bg-washed-yellow:focus { background-color: $washed-yellow; }
|
240
|
+
.hover-bg-washed-red:hover,
|
241
|
+
.hover-bg-washed-red:focus { background-color: $washed-red; }
|
242
|
+
.hover-bg-inherit:hover,
|
243
|
+
.hover-bg-inherit:focus { background-color: inherit; }
|
@@ -0,0 +1,143 @@
|
|
1
|
+
|
2
|
+
// Converted Variables
|
3
|
+
|
4
|
+
|
5
|
+
// Custom Media Query Variables
|
6
|
+
|
7
|
+
|
8
|
+
/*
|
9
|
+
|
10
|
+
SKINS
|
11
|
+
Docs: http://tachyons.io/docs/themes/skins/
|
12
|
+
|
13
|
+
Classes for setting foreground and background colors on elements.
|
14
|
+
If you haven't declared a border color, but set border on an element, it will
|
15
|
+
be set to the current text color.
|
16
|
+
|
17
|
+
*/
|
18
|
+
|
19
|
+
/* Text colors */
|
20
|
+
|
21
|
+
.black-90 { color: $black-90; }
|
22
|
+
.black-80 { color: $black-80; }
|
23
|
+
.black-70 { color: $black-70; }
|
24
|
+
.black-60 { color: $black-60; }
|
25
|
+
.black-50 { color: $black-50; }
|
26
|
+
.black-40 { color: $black-40; }
|
27
|
+
.black-30 { color: $black-30; }
|
28
|
+
.black-20 { color: $black-20; }
|
29
|
+
.black-10 { color: $black-10; }
|
30
|
+
.black-05 { color: $black-05; }
|
31
|
+
|
32
|
+
.white-90 { color: $white-90; }
|
33
|
+
.white-80 { color: $white-80; }
|
34
|
+
.white-70 { color: $white-70; }
|
35
|
+
.white-60 { color: $white-60; }
|
36
|
+
.white-50 { color: $white-50; }
|
37
|
+
.white-40 { color: $white-40; }
|
38
|
+
.white-30 { color: $white-30; }
|
39
|
+
.white-20 { color: $white-20; }
|
40
|
+
.white-10 { color: $white-10; }
|
41
|
+
|
42
|
+
.black { color: $black; }
|
43
|
+
.near-black { color: $near-black; }
|
44
|
+
.dark-gray { color: $dark-gray; }
|
45
|
+
.mid-gray { color: $mid-gray; }
|
46
|
+
.gray { color: $gray; }
|
47
|
+
.silver { color: $silver; }
|
48
|
+
.light-silver { color: $light-silver; }
|
49
|
+
.moon-gray { color: $moon-gray; }
|
50
|
+
.light-gray { color: $light-gray; }
|
51
|
+
.near-white { color: $near-white; }
|
52
|
+
.white { color: $white; }
|
53
|
+
|
54
|
+
.dark-red { color: $dark-red; }
|
55
|
+
.red { color: $red; }
|
56
|
+
.light-red { color: $light-red; }
|
57
|
+
.orange { color: $orange; }
|
58
|
+
.gold { color: $gold; }
|
59
|
+
.yellow { color: $yellow; }
|
60
|
+
.light-yellow { color: $light-yellow; }
|
61
|
+
.purple { color: $purple; }
|
62
|
+
.light-purple { color: $light-purple; }
|
63
|
+
.dark-pink { color: $dark-pink; }
|
64
|
+
.hot-pink { color: $hot-pink; }
|
65
|
+
.pink { color: $pink; }
|
66
|
+
.light-pink { color: $light-pink; }
|
67
|
+
.dark-green { color: $dark-green; }
|
68
|
+
.green { color: $green; }
|
69
|
+
.light-green { color: $light-green; }
|
70
|
+
.navy { color: $navy; }
|
71
|
+
.dark-blue { color: $dark-blue; }
|
72
|
+
.blue { color: $blue; }
|
73
|
+
.light-blue { color: $light-blue; }
|
74
|
+
.lightest-blue { color: $lightest-blue; }
|
75
|
+
.washed-blue { color: $washed-blue; }
|
76
|
+
.washed-green { color: $washed-green; }
|
77
|
+
.washed-yellow { color: $washed-yellow; }
|
78
|
+
.washed-red { color: $washed-red; }
|
79
|
+
.color-inherit { color: inherit; }
|
80
|
+
|
81
|
+
.bg-black-90 { background-color: $black-90; }
|
82
|
+
.bg-black-80 { background-color: $black-80; }
|
83
|
+
.bg-black-70 { background-color: $black-70; }
|
84
|
+
.bg-black-60 { background-color: $black-60; }
|
85
|
+
.bg-black-50 { background-color: $black-50; }
|
86
|
+
.bg-black-40 { background-color: $black-40; }
|
87
|
+
.bg-black-30 { background-color: $black-30; }
|
88
|
+
.bg-black-20 { background-color: $black-20; }
|
89
|
+
.bg-black-10 { background-color: $black-10; }
|
90
|
+
.bg-black-05 { background-color: $black-05; }
|
91
|
+
.bg-white-90 { background-color: $white-90; }
|
92
|
+
.bg-white-80 { background-color: $white-80; }
|
93
|
+
.bg-white-70 { background-color: $white-70; }
|
94
|
+
.bg-white-60 { background-color: $white-60; }
|
95
|
+
.bg-white-50 { background-color: $white-50; }
|
96
|
+
.bg-white-40 { background-color: $white-40; }
|
97
|
+
.bg-white-30 { background-color: $white-30; }
|
98
|
+
.bg-white-20 { background-color: $white-20; }
|
99
|
+
.bg-white-10 { background-color: $white-10; }
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
/* Background colors */
|
104
|
+
|
105
|
+
.bg-black { background-color: $black; }
|
106
|
+
.bg-near-black { background-color: $near-black; }
|
107
|
+
.bg-dark-gray { background-color: $dark-gray; }
|
108
|
+
.bg-mid-gray { background-color: $mid-gray; }
|
109
|
+
.bg-gray { background-color: $gray; }
|
110
|
+
.bg-silver { background-color: $silver; }
|
111
|
+
.bg-light-silver { background-color: $light-silver; }
|
112
|
+
.bg-moon-gray { background-color: $moon-gray; }
|
113
|
+
.bg-light-gray { background-color: $light-gray; }
|
114
|
+
.bg-near-white { background-color: $near-white; }
|
115
|
+
.bg-white { background-color: $white; }
|
116
|
+
.bg-transparent { background-color: $transparent; }
|
117
|
+
|
118
|
+
.bg-dark-red { background-color: $dark-red; }
|
119
|
+
.bg-red { background-color: $red; }
|
120
|
+
.bg-light-red { background-color: $light-red; }
|
121
|
+
.bg-orange { background-color: $orange; }
|
122
|
+
.bg-gold { background-color: $gold; }
|
123
|
+
.bg-yellow { background-color: $yellow; }
|
124
|
+
.bg-light-yellow { background-color: $light-yellow; }
|
125
|
+
.bg-purple { background-color: $purple; }
|
126
|
+
.bg-light-purple { background-color: $light-purple; }
|
127
|
+
.bg-dark-pink { background-color: $dark-pink; }
|
128
|
+
.bg-hot-pink { background-color: $hot-pink; }
|
129
|
+
.bg-pink { background-color: $pink; }
|
130
|
+
.bg-light-pink { background-color: $light-pink; }
|
131
|
+
.bg-dark-green { background-color: $dark-green; }
|
132
|
+
.bg-green { background-color: $green; }
|
133
|
+
.bg-light-green { background-color: $light-green; }
|
134
|
+
.bg-navy { background-color: $navy; }
|
135
|
+
.bg-dark-blue { background-color: $dark-blue; }
|
136
|
+
.bg-blue { background-color: $blue; }
|
137
|
+
.bg-light-blue { background-color: $light-blue; }
|
138
|
+
.bg-lightest-blue { background-color: $lightest-blue; }
|
139
|
+
.bg-washed-blue { background-color: $washed-blue; }
|
140
|
+
.bg-washed-green { background-color: $washed-green; }
|
141
|
+
.bg-washed-yellow { background-color: $washed-yellow; }
|
142
|
+
.bg-washed-red { background-color: $washed-red; }
|
143
|
+
.bg-inherit { background-color: inherit; }
|