loomcss 0.1.0
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/.gitignore +16 -0
- data/.nvmrc +1 -0
- data/.stylelintrc +6 -0
- data/Gemfile +4 -0
- data/LICENSE +21 -0
- data/README.md +161 -0
- data/Rakefile +2 -0
- data/assets/loom/10-global-settings/_box-sizing.scss +5 -0
- data/assets/loom/10-global-settings/_breakpoints.scss +22 -0
- data/assets/loom/10-global-settings/_color.scss +79 -0
- data/assets/loom/10-global-settings/_icons.scss +5 -0
- data/assets/loom/10-global-settings/_misc.scss +89 -0
- data/assets/loom/10-global-settings/_spacing.scss +20 -0
- data/assets/loom/10-global-settings/_typography.scss +201 -0
- data/assets/loom/20-tools/_color.scss +22 -0
- data/assets/loom/20-tools/_grid-columns.scss +23 -0
- data/assets/loom/20-tools/_icons.scss +16 -0
- data/assets/loom/20-tools/_misc.scss +12 -0
- data/assets/loom/20-tools/_mq.scss +126 -0
- data/assets/loom/20-tools/_spacing.scss +14 -0
- data/assets/loom/20-tools/_transition.scss +10 -0
- data/assets/loom/20-tools/_type-checking.scss +52 -0
- data/assets/loom/20-tools/_typography.scss +130 -0
- data/assets/loom/20-tools/_z-index.scss +16 -0
- data/assets/loom/30-generic/_box-sizing.scss +9 -0
- data/assets/loom/30-generic/_normalize.scss +461 -0
- data/assets/loom/30-generic/_reset.scss +48 -0
- data/assets/loom/40-base-elements/_form-items.scss +50 -0
- data/assets/loom/40-base-elements/_images.scss +5 -0
- data/assets/loom/40-base-elements/_typography.scss +138 -0
- data/assets/loom/50-layout/_grid.scss +37 -0
- data/assets/loom/60-objects/_absolute-center.scss +18 -0
- data/assets/loom/60-objects/_absolute-cover.scss +19 -0
- data/assets/loom/60-objects/_button.scss +93 -0
- data/assets/loom/60-objects/_clearfix.scss +19 -0
- data/assets/loom/60-objects/_container.scss +34 -0
- data/assets/loom/60-objects/_fixed-ratio.scss +42 -0
- data/assets/loom/60-objects/_headings.scss +28 -0
- data/assets/loom/60-objects/_hide-visually.scss +23 -0
- data/assets/loom/60-objects/_icon.scss +30 -0
- data/assets/loom/60-objects/_list-inline.scss +37 -0
- data/assets/loom/60-objects/_list-reset.scss +25 -0
- data/assets/loom/60-objects/_media.scss +35 -0
- data/assets/loom/60-objects/_vertical-center.scss +18 -0
- data/assets/loom/70-ui-components/_example.scss +22 -0
- data/assets/loom/80-utilities/_background-color.scss +13 -0
- data/assets/loom/80-utilities/_border.scss +10 -0
- data/assets/loom/80-utilities/_color.scss +13 -0
- data/assets/loom/80-utilities/_display.scss +31 -0
- data/assets/loom/80-utilities/_font-family.scss +20 -0
- data/assets/loom/80-utilities/_font-size.scss +24 -0
- data/assets/loom/80-utilities/_font-style.scss +15 -0
- data/assets/loom/80-utilities/_font-weight.scss +15 -0
- data/assets/loom/80-utilities/_line-height.scss +0 -0
- data/assets/loom/80-utilities/_margin.scss +33 -0
- data/assets/loom/80-utilities/_padding.scss +32 -0
- data/assets/loom/80-utilities/_position.scss +15 -0
- data/assets/loom/80-utilities/_text-align.scss +19 -0
- data/assets/loom/80-utilities/_text-transform.scss +19 -0
- data/assets/loom/80-utilities/_vertical-align.scss +26 -0
- data/assets/loom/80-utilities/_white-space.scss +27 -0
- data/assets/loom/80-utilities/_width.scss +11 -0
- data/assets/loom/90-trumps/.keepfile +0 -0
- data/assets/loom/_10-global-settings.scss +7 -0
- data/assets/loom/_20-tools.scss +10 -0
- data/assets/loom/_30-generic.scss +2 -0
- data/assets/loom/_40-base-elements.scss +3 -0
- data/assets/loom/_50-layout.scss +1 -0
- data/assets/loom/_60-objects.scss +13 -0
- data/assets/loom/_70-ui-components.scss +0 -0
- data/assets/loom/_80-utilities.scss +17 -0
- data/assets/loom/_90-trumps.scss +0 -0
- data/assets/main-shorthand.scss +44 -0
- data/assets/main.scss +108 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/gulpfile.js +24 -0
- data/index.html +97 -0
- data/lib/loomcss.rb +2 -0
- data/lib/loomcss/engine.rb +9 -0
- data/lib/loomcss/version.rb +3 -0
- data/loomcss.gemspec +32 -0
- data/main.css +1298 -0
- data/package.json +36 -0
- data/public/docs/assets/images/favicon.png +0 -0
- data/public/docs/assets/images/logo_full_compact.svg +1 -0
- data/public/docs/assets/images/logo_full_inline.svg +1 -0
- data/public/docs/assets/images/logo_light_compact.svg +1 -0
- data/public/docs/assets/images/logo_light_inline.svg +1 -0
- data/public/docs/assets/js/main.js +56 -0
- data/public/docs/assets/js/main.min.js +1 -0
- data/public/docs/assets/js/search.js +146 -0
- data/public/docs/assets/js/sidebar.js +163 -0
- data/public/docs/assets/js/vendor/fuse.min.js +20 -0
- data/public/docs/assets/js/vendor/jquery.min.js +4 -0
- data/public/docs/assets/js/vendor/prism.min.js +9 -0
- data/public/docs/index.html +314 -0
- metadata +172 -0
data/lib/loomcss.rb
ADDED
data/loomcss.gemspec
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require 'loomcss/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "loomcss"
|
|
8
|
+
spec.version = Loomcss::VERSION
|
|
9
|
+
spec.authors = ["Charlie Owen"]
|
|
10
|
+
spec.email = ["charlie@sonniesedge.co.uk"]
|
|
11
|
+
|
|
12
|
+
spec.summary = %q{Weave your own pattern libraries}
|
|
13
|
+
spec.description = %q{Loom is a Sass framework designed to help you build pattern libraries and design systems quickly and easily. Loom provides a solid base to build your own systems on top of.}
|
|
14
|
+
spec.homepage = "https://github.com/sonniesedge/loom"
|
|
15
|
+
spec.license = "MIT"
|
|
16
|
+
|
|
17
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
|
18
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
|
19
|
+
if spec.respond_to?(:metadata)
|
|
20
|
+
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
|
|
21
|
+
else
|
|
22
|
+
raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
26
|
+
spec.bindir = "exe"
|
|
27
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
28
|
+
spec.require_paths = ["lib"]
|
|
29
|
+
|
|
30
|
+
spec.add_development_dependency "bundler", "~> 1.12"
|
|
31
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
|
32
|
+
end
|
data/main.css
ADDED
|
@@ -0,0 +1,1298 @@
|
|
|
1
|
+
html {
|
|
2
|
+
box-sizing: border-box; }
|
|
3
|
+
|
|
4
|
+
*,
|
|
5
|
+
*::before,
|
|
6
|
+
*::after {
|
|
7
|
+
box-sizing: inherit; }
|
|
8
|
+
|
|
9
|
+
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
|
|
10
|
+
/**
|
|
11
|
+
* 1. Change the default font family in all browsers (opinionated).
|
|
12
|
+
* 2. Correct the line height in all browsers.
|
|
13
|
+
* 3. Prevent adjustments of font size after orientation changes in
|
|
14
|
+
* IE on Windows Phone and in iOS.
|
|
15
|
+
*/
|
|
16
|
+
/* Document
|
|
17
|
+
========================================================================== */
|
|
18
|
+
html {
|
|
19
|
+
font-family: sans-serif;
|
|
20
|
+
/* 1 */
|
|
21
|
+
line-height: 1.15;
|
|
22
|
+
/* 2 */
|
|
23
|
+
-ms-text-size-adjust: 100%;
|
|
24
|
+
/* 3 */
|
|
25
|
+
-webkit-text-size-adjust: 100%;
|
|
26
|
+
/* 3 */ }
|
|
27
|
+
|
|
28
|
+
/* Sections
|
|
29
|
+
========================================================================== */
|
|
30
|
+
/**
|
|
31
|
+
* Remove the margin in all browsers (opinionated).
|
|
32
|
+
*/
|
|
33
|
+
body {
|
|
34
|
+
margin: 0; }
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Add the correct display in IE 9-.
|
|
38
|
+
*/
|
|
39
|
+
article,
|
|
40
|
+
aside,
|
|
41
|
+
footer,
|
|
42
|
+
header,
|
|
43
|
+
nav,
|
|
44
|
+
section {
|
|
45
|
+
display: block; }
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Correct the font size and margin on `h1` elements within `section` and
|
|
49
|
+
* `article` contexts in Chrome, Firefox, and Safari.
|
|
50
|
+
*/
|
|
51
|
+
h1 {
|
|
52
|
+
font-size: 2em;
|
|
53
|
+
margin: 0.67em 0; }
|
|
54
|
+
|
|
55
|
+
/* Grouping content
|
|
56
|
+
========================================================================== */
|
|
57
|
+
/**
|
|
58
|
+
* Add the correct display in IE 9-.
|
|
59
|
+
* 1. Add the correct display in IE.
|
|
60
|
+
*/
|
|
61
|
+
figcaption,
|
|
62
|
+
figure,
|
|
63
|
+
main {
|
|
64
|
+
/* 1 */
|
|
65
|
+
display: block; }
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* Add the correct margin in IE 8.
|
|
69
|
+
*/
|
|
70
|
+
figure {
|
|
71
|
+
margin: 1em 40px; }
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* 1. Add the correct box sizing in Firefox.
|
|
75
|
+
* 2. Show the overflow in Edge and IE.
|
|
76
|
+
*/
|
|
77
|
+
hr {
|
|
78
|
+
box-sizing: content-box;
|
|
79
|
+
/* 1 */
|
|
80
|
+
height: 0;
|
|
81
|
+
/* 1 */
|
|
82
|
+
overflow: visible;
|
|
83
|
+
/* 2 */ }
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
87
|
+
* 2. Correct the odd `em` font sizing in all browsers.
|
|
88
|
+
*/
|
|
89
|
+
pre {
|
|
90
|
+
font-family: monospace, monospace;
|
|
91
|
+
/* 1 */
|
|
92
|
+
font-size: 1em;
|
|
93
|
+
/* 2 */ }
|
|
94
|
+
|
|
95
|
+
/* Text-level semantics
|
|
96
|
+
========================================================================== */
|
|
97
|
+
/**
|
|
98
|
+
* 1. Remove the gray background on active links in IE 10.
|
|
99
|
+
* 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
|
|
100
|
+
*/
|
|
101
|
+
a {
|
|
102
|
+
background-color: transparent;
|
|
103
|
+
/* 1 */
|
|
104
|
+
-webkit-text-decoration-skip: objects;
|
|
105
|
+
/* 2 */ }
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* Remove the outline on focused links when they are also active or hovered
|
|
109
|
+
* in all browsers (opinionated).
|
|
110
|
+
*/
|
|
111
|
+
a:active,
|
|
112
|
+
a:hover {
|
|
113
|
+
outline-width: 0; }
|
|
114
|
+
|
|
115
|
+
/**
|
|
116
|
+
* 1. Remove the bottom border in Firefox 39-.
|
|
117
|
+
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
|
118
|
+
*/
|
|
119
|
+
abbr[title] {
|
|
120
|
+
border-bottom: none;
|
|
121
|
+
/* 1 */
|
|
122
|
+
text-decoration: underline;
|
|
123
|
+
/* 2 */
|
|
124
|
+
text-decoration: underline dotted;
|
|
125
|
+
/* 2 */ }
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* Prevent the duplicate application of `bolder` by the next rule in Safari 6.
|
|
129
|
+
*/
|
|
130
|
+
b,
|
|
131
|
+
strong {
|
|
132
|
+
font-weight: inherit; }
|
|
133
|
+
|
|
134
|
+
/**
|
|
135
|
+
* Add the correct font weight in Chrome, Edge, and Safari.
|
|
136
|
+
*/
|
|
137
|
+
b,
|
|
138
|
+
strong {
|
|
139
|
+
font-weight: bolder; }
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
143
|
+
* 2. Correct the odd `em` font sizing in all browsers.
|
|
144
|
+
*/
|
|
145
|
+
code,
|
|
146
|
+
kbd,
|
|
147
|
+
samp {
|
|
148
|
+
font-family: monospace, monospace;
|
|
149
|
+
/* 1 */
|
|
150
|
+
font-size: 1em;
|
|
151
|
+
/* 2 */ }
|
|
152
|
+
|
|
153
|
+
/**
|
|
154
|
+
* Add the correct font style in Android 4.3-.
|
|
155
|
+
*/
|
|
156
|
+
dfn {
|
|
157
|
+
font-style: italic; }
|
|
158
|
+
|
|
159
|
+
/**
|
|
160
|
+
* Add the correct background and color in IE 9-.
|
|
161
|
+
*/
|
|
162
|
+
mark {
|
|
163
|
+
background-color: #ff0;
|
|
164
|
+
color: #000; }
|
|
165
|
+
|
|
166
|
+
/**
|
|
167
|
+
* Add the correct font size in all browsers.
|
|
168
|
+
*/
|
|
169
|
+
small {
|
|
170
|
+
font-size: 80%; }
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* Prevent `sub` and `sup` elements from affecting the line height in
|
|
174
|
+
* all browsers.
|
|
175
|
+
*/
|
|
176
|
+
sub,
|
|
177
|
+
sup {
|
|
178
|
+
font-size: 75%;
|
|
179
|
+
line-height: 0;
|
|
180
|
+
position: relative;
|
|
181
|
+
vertical-align: baseline; }
|
|
182
|
+
|
|
183
|
+
sub {
|
|
184
|
+
bottom: -0.25em; }
|
|
185
|
+
|
|
186
|
+
sup {
|
|
187
|
+
top: -0.5em; }
|
|
188
|
+
|
|
189
|
+
/* Embedded content
|
|
190
|
+
========================================================================== */
|
|
191
|
+
/**
|
|
192
|
+
* Add the correct display in IE 9-.
|
|
193
|
+
*/
|
|
194
|
+
audio,
|
|
195
|
+
video {
|
|
196
|
+
display: inline-block; }
|
|
197
|
+
|
|
198
|
+
/**
|
|
199
|
+
* Add the correct display in iOS 4-7.
|
|
200
|
+
*/
|
|
201
|
+
audio:not([controls]) {
|
|
202
|
+
display: none;
|
|
203
|
+
height: 0; }
|
|
204
|
+
|
|
205
|
+
/**
|
|
206
|
+
* Remove the border on images inside links in IE 10-.
|
|
207
|
+
*/
|
|
208
|
+
img {
|
|
209
|
+
border-style: none; }
|
|
210
|
+
|
|
211
|
+
/**
|
|
212
|
+
* Hide the overflow in IE.
|
|
213
|
+
*/
|
|
214
|
+
svg:not(:root) {
|
|
215
|
+
overflow: hidden; }
|
|
216
|
+
|
|
217
|
+
/* Forms
|
|
218
|
+
========================================================================== */
|
|
219
|
+
/**
|
|
220
|
+
* 1. Change the font styles in all browsers (opinionated).
|
|
221
|
+
* 2. Remove the margin in Firefox and Safari.
|
|
222
|
+
*/
|
|
223
|
+
button,
|
|
224
|
+
input,
|
|
225
|
+
optgroup,
|
|
226
|
+
select,
|
|
227
|
+
textarea {
|
|
228
|
+
font-family: sans-serif;
|
|
229
|
+
/* 1 */
|
|
230
|
+
font-size: 100%;
|
|
231
|
+
/* 1 */
|
|
232
|
+
line-height: 1.15;
|
|
233
|
+
/* 1 */
|
|
234
|
+
margin: 0;
|
|
235
|
+
/* 2 */ }
|
|
236
|
+
|
|
237
|
+
/**
|
|
238
|
+
* Show the overflow in IE.
|
|
239
|
+
* 1. Show the overflow in Edge.
|
|
240
|
+
*/
|
|
241
|
+
button,
|
|
242
|
+
input {
|
|
243
|
+
/* 1 */
|
|
244
|
+
overflow: visible; }
|
|
245
|
+
|
|
246
|
+
/**
|
|
247
|
+
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
|
248
|
+
* 1. Remove the inheritance of text transform in Firefox.
|
|
249
|
+
*/
|
|
250
|
+
button,
|
|
251
|
+
select {
|
|
252
|
+
/* 1 */
|
|
253
|
+
text-transform: none; }
|
|
254
|
+
|
|
255
|
+
/**
|
|
256
|
+
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
|
|
257
|
+
* controls in Android 4.
|
|
258
|
+
* 2. Correct the inability to style clickable types in iOS and Safari.
|
|
259
|
+
*/
|
|
260
|
+
button,
|
|
261
|
+
html [type="button"],
|
|
262
|
+
[type="reset"],
|
|
263
|
+
[type="submit"] {
|
|
264
|
+
-webkit-appearance: button;
|
|
265
|
+
/* 2 */ }
|
|
266
|
+
|
|
267
|
+
/**
|
|
268
|
+
* Remove the inner border and padding in Firefox.
|
|
269
|
+
*/
|
|
270
|
+
button::-moz-focus-inner,
|
|
271
|
+
[type="button"]::-moz-focus-inner,
|
|
272
|
+
[type="reset"]::-moz-focus-inner,
|
|
273
|
+
[type="submit"]::-moz-focus-inner {
|
|
274
|
+
border-style: none;
|
|
275
|
+
padding: 0; }
|
|
276
|
+
|
|
277
|
+
/**
|
|
278
|
+
* Restore the focus styles unset by the previous rule.
|
|
279
|
+
*/
|
|
280
|
+
button:-moz-focusring,
|
|
281
|
+
[type="button"]:-moz-focusring,
|
|
282
|
+
[type="reset"]:-moz-focusring,
|
|
283
|
+
[type="submit"]:-moz-focusring {
|
|
284
|
+
outline: 1px dotted ButtonText; }
|
|
285
|
+
|
|
286
|
+
/**
|
|
287
|
+
* Change the border, margin, and padding in all browsers (opinionated).
|
|
288
|
+
*/
|
|
289
|
+
fieldset {
|
|
290
|
+
border: 1px solid #c0c0c0;
|
|
291
|
+
margin: 0 2px;
|
|
292
|
+
padding: 0.35em 0.625em 0.75em; }
|
|
293
|
+
|
|
294
|
+
/**
|
|
295
|
+
* 1. Correct the text wrapping in Edge and IE.
|
|
296
|
+
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
|
297
|
+
* 3. Remove the padding so developers are not caught out when they zero out
|
|
298
|
+
* `fieldset` elements in all browsers.
|
|
299
|
+
*/
|
|
300
|
+
legend {
|
|
301
|
+
box-sizing: border-box;
|
|
302
|
+
/* 1 */
|
|
303
|
+
color: inherit;
|
|
304
|
+
/* 2 */
|
|
305
|
+
display: table;
|
|
306
|
+
/* 1 */
|
|
307
|
+
max-width: 100%;
|
|
308
|
+
/* 1 */
|
|
309
|
+
padding: 0;
|
|
310
|
+
/* 3 */
|
|
311
|
+
white-space: normal;
|
|
312
|
+
/* 1 */ }
|
|
313
|
+
|
|
314
|
+
/**
|
|
315
|
+
* 1. Add the correct display in IE 9-.
|
|
316
|
+
* 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
|
317
|
+
*/
|
|
318
|
+
progress {
|
|
319
|
+
display: inline-block;
|
|
320
|
+
/* 1 */
|
|
321
|
+
vertical-align: baseline;
|
|
322
|
+
/* 2 */ }
|
|
323
|
+
|
|
324
|
+
/**
|
|
325
|
+
* Remove the default vertical scrollbar in IE.
|
|
326
|
+
*/
|
|
327
|
+
textarea {
|
|
328
|
+
overflow: auto; }
|
|
329
|
+
|
|
330
|
+
/**
|
|
331
|
+
* 1. Add the correct box sizing in IE 10-.
|
|
332
|
+
* 2. Remove the padding in IE 10-.
|
|
333
|
+
*/
|
|
334
|
+
[type="checkbox"],
|
|
335
|
+
[type="radio"] {
|
|
336
|
+
box-sizing: border-box;
|
|
337
|
+
/* 1 */
|
|
338
|
+
padding: 0;
|
|
339
|
+
/* 2 */ }
|
|
340
|
+
|
|
341
|
+
/**
|
|
342
|
+
* Correct the cursor style of increment and decrement buttons in Chrome.
|
|
343
|
+
*/
|
|
344
|
+
[type="number"]::-webkit-inner-spin-button,
|
|
345
|
+
[type="number"]::-webkit-outer-spin-button {
|
|
346
|
+
height: auto; }
|
|
347
|
+
|
|
348
|
+
/**
|
|
349
|
+
* 1. Correct the odd appearance in Chrome and Safari.
|
|
350
|
+
* 2. Correct the outline style in Safari.
|
|
351
|
+
*/
|
|
352
|
+
[type="search"] {
|
|
353
|
+
-webkit-appearance: textfield;
|
|
354
|
+
/* 1 */
|
|
355
|
+
outline-offset: -2px;
|
|
356
|
+
/* 2 */ }
|
|
357
|
+
|
|
358
|
+
/**
|
|
359
|
+
* Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
|
|
360
|
+
*/
|
|
361
|
+
[type="search"]::-webkit-search-cancel-button,
|
|
362
|
+
[type="search"]::-webkit-search-decoration {
|
|
363
|
+
-webkit-appearance: none; }
|
|
364
|
+
|
|
365
|
+
/**
|
|
366
|
+
* 1. Correct the inability to style clickable types in iOS and Safari.
|
|
367
|
+
* 2. Change font properties to `inherit` in Safari.
|
|
368
|
+
*/
|
|
369
|
+
::-webkit-file-upload-button {
|
|
370
|
+
-webkit-appearance: button;
|
|
371
|
+
/* 1 */
|
|
372
|
+
font: inherit;
|
|
373
|
+
/* 2 */ }
|
|
374
|
+
|
|
375
|
+
/* Interactive
|
|
376
|
+
========================================================================== */
|
|
377
|
+
/*
|
|
378
|
+
* Add the correct display in IE 9-.
|
|
379
|
+
* 1. Add the correct display in Edge, IE, and Firefox.
|
|
380
|
+
*/
|
|
381
|
+
details,
|
|
382
|
+
menu {
|
|
383
|
+
display: block; }
|
|
384
|
+
|
|
385
|
+
/*
|
|
386
|
+
* Add the correct display in all browsers.
|
|
387
|
+
*/
|
|
388
|
+
summary {
|
|
389
|
+
display: list-item; }
|
|
390
|
+
|
|
391
|
+
/* Scripting
|
|
392
|
+
========================================================================== */
|
|
393
|
+
/**
|
|
394
|
+
* Add the correct display in IE 9-.
|
|
395
|
+
*/
|
|
396
|
+
canvas {
|
|
397
|
+
display: inline-block; }
|
|
398
|
+
|
|
399
|
+
/**
|
|
400
|
+
* Add the correct display in IE.
|
|
401
|
+
*/
|
|
402
|
+
template {
|
|
403
|
+
display: none; }
|
|
404
|
+
|
|
405
|
+
/* Hidden
|
|
406
|
+
========================================================================== */
|
|
407
|
+
/**
|
|
408
|
+
* Add the correct display in IE 10-.
|
|
409
|
+
*/
|
|
410
|
+
[hidden] {
|
|
411
|
+
display: none; }
|
|
412
|
+
|
|
413
|
+
img {
|
|
414
|
+
height: auto;
|
|
415
|
+
max-width: 100%; }
|
|
416
|
+
|
|
417
|
+
html {
|
|
418
|
+
background: #fff;
|
|
419
|
+
color: #000;
|
|
420
|
+
font-family: sans-serif;
|
|
421
|
+
line-height: 1.5;
|
|
422
|
+
font-size: 18px;
|
|
423
|
+
font-size: 1rem; }
|
|
424
|
+
.fonts-loaded html {
|
|
425
|
+
font-family: sans-serif; }
|
|
426
|
+
|
|
427
|
+
@media (min-width: 41.11111em) {
|
|
428
|
+
html {
|
|
429
|
+
font-size: 16px;
|
|
430
|
+
font-size: 1rem; } }
|
|
431
|
+
|
|
432
|
+
a {
|
|
433
|
+
color: #999595;
|
|
434
|
+
transition: color 0.2s ease-in-out 0s; }
|
|
435
|
+
a:visited {
|
|
436
|
+
color: #444; }
|
|
437
|
+
a:hover, a:focus {
|
|
438
|
+
color: #000; }
|
|
439
|
+
|
|
440
|
+
p {
|
|
441
|
+
margin: 0 0 1rem; }
|
|
442
|
+
|
|
443
|
+
h1,
|
|
444
|
+
h2,
|
|
445
|
+
h3,
|
|
446
|
+
h4,
|
|
447
|
+
h5,
|
|
448
|
+
h6 {
|
|
449
|
+
font-family: serif;
|
|
450
|
+
font-weight: bold;
|
|
451
|
+
margin: 0 0 0.5rem;
|
|
452
|
+
text-rendering: optimizeLegibility; }
|
|
453
|
+
.fonts-loaded h1, .fonts-loaded
|
|
454
|
+
h2, .fonts-loaded
|
|
455
|
+
h3, .fonts-loaded
|
|
456
|
+
h4, .fonts-loaded
|
|
457
|
+
h5, .fonts-loaded
|
|
458
|
+
h6 {
|
|
459
|
+
font-family: serif; }
|
|
460
|
+
|
|
461
|
+
h1 {
|
|
462
|
+
font-size: 36px;
|
|
463
|
+
font-size: 2rem; }
|
|
464
|
+
|
|
465
|
+
h2 {
|
|
466
|
+
font-size: 30px;
|
|
467
|
+
font-size: 1.66667rem; }
|
|
468
|
+
|
|
469
|
+
h3 {
|
|
470
|
+
font-size: 26px;
|
|
471
|
+
font-size: 1.44444rem; }
|
|
472
|
+
|
|
473
|
+
h4 {
|
|
474
|
+
font-size: 22px;
|
|
475
|
+
font-size: 1.22222rem; }
|
|
476
|
+
|
|
477
|
+
h5 {
|
|
478
|
+
font-size: 20px;
|
|
479
|
+
font-size: 1.11111rem; }
|
|
480
|
+
|
|
481
|
+
h6 {
|
|
482
|
+
font-size: 18px;
|
|
483
|
+
font-size: 1rem; }
|
|
484
|
+
|
|
485
|
+
@media (min-width: 41.11111em) {
|
|
486
|
+
h1 {
|
|
487
|
+
font-size: 32px;
|
|
488
|
+
font-size: 2rem; }
|
|
489
|
+
h2 {
|
|
490
|
+
font-size: 28px;
|
|
491
|
+
font-size: 1.75rem; }
|
|
492
|
+
h3 {
|
|
493
|
+
font-size: 24px;
|
|
494
|
+
font-size: 1.5rem; }
|
|
495
|
+
h4 {
|
|
496
|
+
font-size: 20px;
|
|
497
|
+
font-size: 1.25rem; }
|
|
498
|
+
h5 {
|
|
499
|
+
font-size: 18px;
|
|
500
|
+
font-size: 1.125rem; }
|
|
501
|
+
h6 {
|
|
502
|
+
font-size: 16px;
|
|
503
|
+
font-size: 1rem; } }
|
|
504
|
+
|
|
505
|
+
input[type=text],
|
|
506
|
+
input[type=url],
|
|
507
|
+
input[type=tel],
|
|
508
|
+
input[type=number],
|
|
509
|
+
input[type=color],
|
|
510
|
+
input[type=email],
|
|
511
|
+
input[type=date],
|
|
512
|
+
input[type=datetime],
|
|
513
|
+
input[type=month],
|
|
514
|
+
input[type=password],
|
|
515
|
+
input[type=search],
|
|
516
|
+
input[type=week],
|
|
517
|
+
input[type=time] {
|
|
518
|
+
border: 1px solid #999595;
|
|
519
|
+
border-radius: 5px;
|
|
520
|
+
color: #444;
|
|
521
|
+
padding: 0.5rem; }
|
|
522
|
+
|
|
523
|
+
input::placeholder {
|
|
524
|
+
color: #999595; }
|
|
525
|
+
|
|
526
|
+
textarea {
|
|
527
|
+
border: 1px solid #999595;
|
|
528
|
+
color: #444;
|
|
529
|
+
padding: 0.5rem; }
|
|
530
|
+
|
|
531
|
+
label {
|
|
532
|
+
font-weight: bold; }
|
|
533
|
+
|
|
534
|
+
.l-grid {
|
|
535
|
+
display: flex;
|
|
536
|
+
flex: 0 1 auto;
|
|
537
|
+
flex-direction: row;
|
|
538
|
+
flex-wrap: wrap;
|
|
539
|
+
margin-left: -0.5rem;
|
|
540
|
+
margin-right: -0.5rem; }
|
|
541
|
+
|
|
542
|
+
.l-grid--reverse {
|
|
543
|
+
flex-direction: row-reverse; }
|
|
544
|
+
|
|
545
|
+
.l-grid__item {
|
|
546
|
+
padding-left: 0.5rem;
|
|
547
|
+
padding-right: 0.5rem; }
|
|
548
|
+
|
|
549
|
+
.l-col-1-of-12 {
|
|
550
|
+
flex-basis: 8.33333%;
|
|
551
|
+
max-width: 8.33333%; }
|
|
552
|
+
|
|
553
|
+
.l-col-2-of-12 {
|
|
554
|
+
flex-basis: 16.66667%;
|
|
555
|
+
max-width: 16.66667%; }
|
|
556
|
+
|
|
557
|
+
.l-col-3-of-12 {
|
|
558
|
+
flex-basis: 25%;
|
|
559
|
+
max-width: 25%; }
|
|
560
|
+
|
|
561
|
+
.l-col-4-of-12 {
|
|
562
|
+
flex-basis: 33.33333%;
|
|
563
|
+
max-width: 33.33333%; }
|
|
564
|
+
|
|
565
|
+
.l-col-5-of-12 {
|
|
566
|
+
flex-basis: 41.66667%;
|
|
567
|
+
max-width: 41.66667%; }
|
|
568
|
+
|
|
569
|
+
.l-col-6-of-12 {
|
|
570
|
+
flex-basis: 50%;
|
|
571
|
+
max-width: 50%; }
|
|
572
|
+
|
|
573
|
+
.l-col-7-of-12 {
|
|
574
|
+
flex-basis: 58.33333%;
|
|
575
|
+
max-width: 58.33333%; }
|
|
576
|
+
|
|
577
|
+
.l-col-8-of-12 {
|
|
578
|
+
flex-basis: 66.66667%;
|
|
579
|
+
max-width: 66.66667%; }
|
|
580
|
+
|
|
581
|
+
.l-col-9-of-12 {
|
|
582
|
+
flex-basis: 75%;
|
|
583
|
+
max-width: 75%; }
|
|
584
|
+
|
|
585
|
+
.l-col-10-of-12 {
|
|
586
|
+
flex-basis: 83.33333%;
|
|
587
|
+
max-width: 83.33333%; }
|
|
588
|
+
|
|
589
|
+
.l-col-11-of-12 {
|
|
590
|
+
flex-basis: 91.66667%;
|
|
591
|
+
max-width: 91.66667%; }
|
|
592
|
+
|
|
593
|
+
.l-col-12-of-12 {
|
|
594
|
+
flex-basis: 100%;
|
|
595
|
+
max-width: 100%; }
|
|
596
|
+
|
|
597
|
+
@media (min-width: 17.77778em) {
|
|
598
|
+
.l-col-1-of-12\@small {
|
|
599
|
+
flex-basis: 8.33333%;
|
|
600
|
+
max-width: 8.33333%; }
|
|
601
|
+
.l-col-2-of-12\@small {
|
|
602
|
+
flex-basis: 16.66667%;
|
|
603
|
+
max-width: 16.66667%; }
|
|
604
|
+
.l-col-3-of-12\@small {
|
|
605
|
+
flex-basis: 25%;
|
|
606
|
+
max-width: 25%; }
|
|
607
|
+
.l-col-4-of-12\@small {
|
|
608
|
+
flex-basis: 33.33333%;
|
|
609
|
+
max-width: 33.33333%; }
|
|
610
|
+
.l-col-5-of-12\@small {
|
|
611
|
+
flex-basis: 41.66667%;
|
|
612
|
+
max-width: 41.66667%; }
|
|
613
|
+
.l-col-6-of-12\@small {
|
|
614
|
+
flex-basis: 50%;
|
|
615
|
+
max-width: 50%; }
|
|
616
|
+
.l-col-7-of-12\@small {
|
|
617
|
+
flex-basis: 58.33333%;
|
|
618
|
+
max-width: 58.33333%; }
|
|
619
|
+
.l-col-8-of-12\@small {
|
|
620
|
+
flex-basis: 66.66667%;
|
|
621
|
+
max-width: 66.66667%; }
|
|
622
|
+
.l-col-9-of-12\@small {
|
|
623
|
+
flex-basis: 75%;
|
|
624
|
+
max-width: 75%; }
|
|
625
|
+
.l-col-10-of-12\@small {
|
|
626
|
+
flex-basis: 83.33333%;
|
|
627
|
+
max-width: 83.33333%; }
|
|
628
|
+
.l-col-11-of-12\@small {
|
|
629
|
+
flex-basis: 91.66667%;
|
|
630
|
+
max-width: 91.66667%; }
|
|
631
|
+
.l-col-12-of-12\@small {
|
|
632
|
+
flex-basis: 100%;
|
|
633
|
+
max-width: 100%; } }
|
|
634
|
+
|
|
635
|
+
@media (min-width: 41.11111em) {
|
|
636
|
+
.l-col-1-of-12\@medium {
|
|
637
|
+
flex-basis: 8.33333%;
|
|
638
|
+
max-width: 8.33333%; }
|
|
639
|
+
.l-col-2-of-12\@medium {
|
|
640
|
+
flex-basis: 16.66667%;
|
|
641
|
+
max-width: 16.66667%; }
|
|
642
|
+
.l-col-3-of-12\@medium {
|
|
643
|
+
flex-basis: 25%;
|
|
644
|
+
max-width: 25%; }
|
|
645
|
+
.l-col-4-of-12\@medium {
|
|
646
|
+
flex-basis: 33.33333%;
|
|
647
|
+
max-width: 33.33333%; }
|
|
648
|
+
.l-col-5-of-12\@medium {
|
|
649
|
+
flex-basis: 41.66667%;
|
|
650
|
+
max-width: 41.66667%; }
|
|
651
|
+
.l-col-6-of-12\@medium {
|
|
652
|
+
flex-basis: 50%;
|
|
653
|
+
max-width: 50%; }
|
|
654
|
+
.l-col-7-of-12\@medium {
|
|
655
|
+
flex-basis: 58.33333%;
|
|
656
|
+
max-width: 58.33333%; }
|
|
657
|
+
.l-col-8-of-12\@medium {
|
|
658
|
+
flex-basis: 66.66667%;
|
|
659
|
+
max-width: 66.66667%; }
|
|
660
|
+
.l-col-9-of-12\@medium {
|
|
661
|
+
flex-basis: 75%;
|
|
662
|
+
max-width: 75%; }
|
|
663
|
+
.l-col-10-of-12\@medium {
|
|
664
|
+
flex-basis: 83.33333%;
|
|
665
|
+
max-width: 83.33333%; }
|
|
666
|
+
.l-col-11-of-12\@medium {
|
|
667
|
+
flex-basis: 91.66667%;
|
|
668
|
+
max-width: 91.66667%; }
|
|
669
|
+
.l-col-12-of-12\@medium {
|
|
670
|
+
flex-basis: 100%;
|
|
671
|
+
max-width: 100%; } }
|
|
672
|
+
|
|
673
|
+
@media (min-width: 54.44444em) {
|
|
674
|
+
.l-col-1-of-12\@large {
|
|
675
|
+
flex-basis: 8.33333%;
|
|
676
|
+
max-width: 8.33333%; }
|
|
677
|
+
.l-col-2-of-12\@large {
|
|
678
|
+
flex-basis: 16.66667%;
|
|
679
|
+
max-width: 16.66667%; }
|
|
680
|
+
.l-col-3-of-12\@large {
|
|
681
|
+
flex-basis: 25%;
|
|
682
|
+
max-width: 25%; }
|
|
683
|
+
.l-col-4-of-12\@large {
|
|
684
|
+
flex-basis: 33.33333%;
|
|
685
|
+
max-width: 33.33333%; }
|
|
686
|
+
.l-col-5-of-12\@large {
|
|
687
|
+
flex-basis: 41.66667%;
|
|
688
|
+
max-width: 41.66667%; }
|
|
689
|
+
.l-col-6-of-12\@large {
|
|
690
|
+
flex-basis: 50%;
|
|
691
|
+
max-width: 50%; }
|
|
692
|
+
.l-col-7-of-12\@large {
|
|
693
|
+
flex-basis: 58.33333%;
|
|
694
|
+
max-width: 58.33333%; }
|
|
695
|
+
.l-col-8-of-12\@large {
|
|
696
|
+
flex-basis: 66.66667%;
|
|
697
|
+
max-width: 66.66667%; }
|
|
698
|
+
.l-col-9-of-12\@large {
|
|
699
|
+
flex-basis: 75%;
|
|
700
|
+
max-width: 75%; }
|
|
701
|
+
.l-col-10-of-12\@large {
|
|
702
|
+
flex-basis: 83.33333%;
|
|
703
|
+
max-width: 83.33333%; }
|
|
704
|
+
.l-col-11-of-12\@large {
|
|
705
|
+
flex-basis: 91.66667%;
|
|
706
|
+
max-width: 91.66667%; }
|
|
707
|
+
.l-col-12-of-12\@large {
|
|
708
|
+
flex-basis: 100%;
|
|
709
|
+
max-width: 100%; } }
|
|
710
|
+
|
|
711
|
+
@media (min-width: 72.22222em) {
|
|
712
|
+
.l-col-1-of-12\@xlarge {
|
|
713
|
+
flex-basis: 8.33333%;
|
|
714
|
+
max-width: 8.33333%; }
|
|
715
|
+
.l-col-2-of-12\@xlarge {
|
|
716
|
+
flex-basis: 16.66667%;
|
|
717
|
+
max-width: 16.66667%; }
|
|
718
|
+
.l-col-3-of-12\@xlarge {
|
|
719
|
+
flex-basis: 25%;
|
|
720
|
+
max-width: 25%; }
|
|
721
|
+
.l-col-4-of-12\@xlarge {
|
|
722
|
+
flex-basis: 33.33333%;
|
|
723
|
+
max-width: 33.33333%; }
|
|
724
|
+
.l-col-5-of-12\@xlarge {
|
|
725
|
+
flex-basis: 41.66667%;
|
|
726
|
+
max-width: 41.66667%; }
|
|
727
|
+
.l-col-6-of-12\@xlarge {
|
|
728
|
+
flex-basis: 50%;
|
|
729
|
+
max-width: 50%; }
|
|
730
|
+
.l-col-7-of-12\@xlarge {
|
|
731
|
+
flex-basis: 58.33333%;
|
|
732
|
+
max-width: 58.33333%; }
|
|
733
|
+
.l-col-8-of-12\@xlarge {
|
|
734
|
+
flex-basis: 66.66667%;
|
|
735
|
+
max-width: 66.66667%; }
|
|
736
|
+
.l-col-9-of-12\@xlarge {
|
|
737
|
+
flex-basis: 75%;
|
|
738
|
+
max-width: 75%; }
|
|
739
|
+
.l-col-10-of-12\@xlarge {
|
|
740
|
+
flex-basis: 83.33333%;
|
|
741
|
+
max-width: 83.33333%; }
|
|
742
|
+
.l-col-11-of-12\@xlarge {
|
|
743
|
+
flex-basis: 91.66667%;
|
|
744
|
+
max-width: 91.66667%; }
|
|
745
|
+
.l-col-12-of-12\@xlarge {
|
|
746
|
+
flex-basis: 100%;
|
|
747
|
+
max-width: 100%; } }
|
|
748
|
+
|
|
749
|
+
.o-h-alpha {
|
|
750
|
+
font-size: 36px;
|
|
751
|
+
font-size: 2rem; }
|
|
752
|
+
|
|
753
|
+
.o-h-beta {
|
|
754
|
+
font-size: 30px;
|
|
755
|
+
font-size: 1.66667rem; }
|
|
756
|
+
|
|
757
|
+
.o-h-gamma {
|
|
758
|
+
font-size: 26px;
|
|
759
|
+
font-size: 1.44444rem; }
|
|
760
|
+
|
|
761
|
+
.o-h-delta {
|
|
762
|
+
font-size: 22px;
|
|
763
|
+
font-size: 1.22222rem; }
|
|
764
|
+
|
|
765
|
+
.o-h-epsilon {
|
|
766
|
+
font-size: 20px;
|
|
767
|
+
font-size: 1.11111rem; }
|
|
768
|
+
|
|
769
|
+
.o-h-zeta {
|
|
770
|
+
font-size: 18px;
|
|
771
|
+
font-size: 1rem; }
|
|
772
|
+
|
|
773
|
+
@media (min-width: 41.11111em) {
|
|
774
|
+
.o-h-alpha {
|
|
775
|
+
font-size: 32px;
|
|
776
|
+
font-size: 2rem; }
|
|
777
|
+
.o-h-beta {
|
|
778
|
+
font-size: 28px;
|
|
779
|
+
font-size: 1.75rem; }
|
|
780
|
+
.o-h-gamma {
|
|
781
|
+
font-size: 24px;
|
|
782
|
+
font-size: 1.5rem; }
|
|
783
|
+
.o-h-delta {
|
|
784
|
+
font-size: 20px;
|
|
785
|
+
font-size: 1.25rem; }
|
|
786
|
+
.o-h-epsilon {
|
|
787
|
+
font-size: 18px;
|
|
788
|
+
font-size: 1.125rem; }
|
|
789
|
+
.o-h-zeta {
|
|
790
|
+
font-size: 16px;
|
|
791
|
+
font-size: 1rem; } }
|
|
792
|
+
|
|
793
|
+
.o-list-reset {
|
|
794
|
+
margin: 0;
|
|
795
|
+
padding: 0;
|
|
796
|
+
list-style-type: none; }
|
|
797
|
+
|
|
798
|
+
.o-icon {
|
|
799
|
+
color: inherit;
|
|
800
|
+
display: inline-block;
|
|
801
|
+
fill: currentColor;
|
|
802
|
+
font-size: 1em;
|
|
803
|
+
height: 1em;
|
|
804
|
+
outline: none;
|
|
805
|
+
vertical-align: middle;
|
|
806
|
+
width: 1em; }
|
|
807
|
+
|
|
808
|
+
.o-button {
|
|
809
|
+
background-color: #e5e5e5;
|
|
810
|
+
border: 1px solid transparent;
|
|
811
|
+
border-radius: 5px;
|
|
812
|
+
color: #444;
|
|
813
|
+
cursor: pointer;
|
|
814
|
+
display: inline-block;
|
|
815
|
+
font: inherit;
|
|
816
|
+
line-height: normal;
|
|
817
|
+
padding: 0.5rem 1rem;
|
|
818
|
+
text-align: center;
|
|
819
|
+
text-decoration: none;
|
|
820
|
+
transition: color 0.2s ease-in-out 0s, background-color 0.2s ease-in-out 0s;
|
|
821
|
+
user-select: none;
|
|
822
|
+
vertical-align: middle; }
|
|
823
|
+
.o-button:visited {
|
|
824
|
+
color: #444; }
|
|
825
|
+
.o-button:hover, .o-button:focus {
|
|
826
|
+
background-color: #b2b2b2;
|
|
827
|
+
border-color: transparent;
|
|
828
|
+
color: #111111; }
|
|
829
|
+
|
|
830
|
+
.o-button__label {
|
|
831
|
+
display: inline-block;
|
|
832
|
+
position: relative;
|
|
833
|
+
vertical-align: middle; }
|
|
834
|
+
|
|
835
|
+
.o-button-icon {
|
|
836
|
+
background-color: #e5e5e5;
|
|
837
|
+
border: 1px solid transparent;
|
|
838
|
+
border-radius: 50%;
|
|
839
|
+
color: #444;
|
|
840
|
+
cursor: pointer;
|
|
841
|
+
display: inline-block;
|
|
842
|
+
font: inherit;
|
|
843
|
+
line-height: 1;
|
|
844
|
+
padding: 0.5rem 0.5rem;
|
|
845
|
+
text-align: center;
|
|
846
|
+
text-decoration: none;
|
|
847
|
+
transition: color 0.2s ease-in-out 0s, background-color 0.2s ease-in-out 0s;
|
|
848
|
+
user-select: none;
|
|
849
|
+
vertical-align: middle; }
|
|
850
|
+
.o-button-icon:visited {
|
|
851
|
+
color: #444; }
|
|
852
|
+
.o-button-icon:hover, .o-button-icon:focus {
|
|
853
|
+
background-color: #b2b2b2;
|
|
854
|
+
border-color: transparent;
|
|
855
|
+
color: #111111; }
|
|
856
|
+
|
|
857
|
+
.o-absolute-center {
|
|
858
|
+
left: 50%;
|
|
859
|
+
position: absolute;
|
|
860
|
+
top: 50%;
|
|
861
|
+
transform: translate(-50%, -50%); }
|
|
862
|
+
|
|
863
|
+
.o-absolute-cover {
|
|
864
|
+
bottom: 0;
|
|
865
|
+
left: 0;
|
|
866
|
+
position: absolute;
|
|
867
|
+
right: 0;
|
|
868
|
+
top: 0; }
|
|
869
|
+
|
|
870
|
+
.o-clearfix::after {
|
|
871
|
+
clear: both;
|
|
872
|
+
content: '';
|
|
873
|
+
display: block; }
|
|
874
|
+
|
|
875
|
+
.o-fixed-ratio {
|
|
876
|
+
display: block;
|
|
877
|
+
overflow: hidden;
|
|
878
|
+
position: relative;
|
|
879
|
+
width: 100%; }
|
|
880
|
+
.o-fixed-ratio::before {
|
|
881
|
+
content: '';
|
|
882
|
+
display: block;
|
|
883
|
+
padding-top: 56.25%; }
|
|
884
|
+
|
|
885
|
+
.o-fixed-ratio__inner {
|
|
886
|
+
bottom: 0;
|
|
887
|
+
display: block;
|
|
888
|
+
height: auto;
|
|
889
|
+
left: 0;
|
|
890
|
+
min-height: 100%;
|
|
891
|
+
position: absolute;
|
|
892
|
+
right: 0;
|
|
893
|
+
top: 0;
|
|
894
|
+
width: 100%; }
|
|
895
|
+
|
|
896
|
+
.o-vertical-center {
|
|
897
|
+
position: absolute;
|
|
898
|
+
top: 50%;
|
|
899
|
+
transform: translateY(-50%); }
|
|
900
|
+
|
|
901
|
+
.o-media {
|
|
902
|
+
display: block; }
|
|
903
|
+
.o-media::after {
|
|
904
|
+
clear: both;
|
|
905
|
+
content: '';
|
|
906
|
+
display: block; }
|
|
907
|
+
|
|
908
|
+
.o-media__primary {
|
|
909
|
+
float: left;
|
|
910
|
+
margin-right: 0.5rem; }
|
|
911
|
+
|
|
912
|
+
.o-media__secondary {
|
|
913
|
+
display: block;
|
|
914
|
+
overflow: hidden; }
|
|
915
|
+
|
|
916
|
+
.o-hide-visually {
|
|
917
|
+
border: 0;
|
|
918
|
+
clip: rect(1px, 1px, 1px, 1px);
|
|
919
|
+
clip-path: circle(1% at 1% 1%);
|
|
920
|
+
height: 1px;
|
|
921
|
+
overflow: hidden;
|
|
922
|
+
padding: 0;
|
|
923
|
+
position: absolute;
|
|
924
|
+
width: 1px; }
|
|
925
|
+
|
|
926
|
+
.o-container {
|
|
927
|
+
display: block;
|
|
928
|
+
margin-bottom: 2rem;
|
|
929
|
+
margin-left: auto;
|
|
930
|
+
margin-right: auto;
|
|
931
|
+
max-width: 55rem;
|
|
932
|
+
padding-left: 2rem;
|
|
933
|
+
padding-right: 2rem;
|
|
934
|
+
transition: padding 0.2s ease-in-out 0s;
|
|
935
|
+
width: 100%; }
|
|
936
|
+
@media (min-width: 41.11111em) {
|
|
937
|
+
.o-container {
|
|
938
|
+
padding-left: 3rem;
|
|
939
|
+
padding-right: 3rem; } }
|
|
940
|
+
|
|
941
|
+
.o-list-inline {
|
|
942
|
+
list-style-type: none;
|
|
943
|
+
margin: 0;
|
|
944
|
+
padding: 0; }
|
|
945
|
+
|
|
946
|
+
.o-list-inline__item {
|
|
947
|
+
display: inline-block; }
|
|
948
|
+
|
|
949
|
+
.o-background-color-black {
|
|
950
|
+
background-color: #000; }
|
|
951
|
+
|
|
952
|
+
.o-background-color-white {
|
|
953
|
+
background-color: #fff; }
|
|
954
|
+
|
|
955
|
+
.o-color-black {
|
|
956
|
+
color: #000; }
|
|
957
|
+
|
|
958
|
+
.o-color-white {
|
|
959
|
+
color: #fff; }
|
|
960
|
+
|
|
961
|
+
.u-display-block {
|
|
962
|
+
display: block; }
|
|
963
|
+
|
|
964
|
+
.u-display-inline {
|
|
965
|
+
display: inline; }
|
|
966
|
+
|
|
967
|
+
.u-display-inline-block {
|
|
968
|
+
display: inline-block; }
|
|
969
|
+
|
|
970
|
+
.u-display-none {
|
|
971
|
+
display: none; }
|
|
972
|
+
|
|
973
|
+
@media (min-width: 17.77778em) {
|
|
974
|
+
.u-display-none\@small {
|
|
975
|
+
display: none; } }
|
|
976
|
+
|
|
977
|
+
@media (min-width: 54.44444em) {
|
|
978
|
+
.u-display-none\@large {
|
|
979
|
+
display: none; } }
|
|
980
|
+
|
|
981
|
+
.u-font-family-primary {
|
|
982
|
+
font-family: sans-serif; }
|
|
983
|
+
.fonts-loaded .u-font-family-primary {
|
|
984
|
+
font-family: sans-serif; }
|
|
985
|
+
|
|
986
|
+
.u-font-family-secondary {
|
|
987
|
+
font-family: serif; }
|
|
988
|
+
.fonts-loaded .u-font-family-secondary {
|
|
989
|
+
font-family: serif; }
|
|
990
|
+
|
|
991
|
+
.u-font-size-default {
|
|
992
|
+
font-size: 18px;
|
|
993
|
+
font-size: 1rem; }
|
|
994
|
+
|
|
995
|
+
.u-font-size-alpha {
|
|
996
|
+
font-size: 36px;
|
|
997
|
+
font-size: 2rem; }
|
|
998
|
+
|
|
999
|
+
.u-font-size-beta {
|
|
1000
|
+
font-size: 30px;
|
|
1001
|
+
font-size: 1.66667rem; }
|
|
1002
|
+
|
|
1003
|
+
.u-font-size-gamma {
|
|
1004
|
+
font-size: 26px;
|
|
1005
|
+
font-size: 1.44444rem; }
|
|
1006
|
+
|
|
1007
|
+
.u-font-size-delta {
|
|
1008
|
+
font-size: 22px;
|
|
1009
|
+
font-size: 1.22222rem; }
|
|
1010
|
+
|
|
1011
|
+
.u-font-size-epsilon {
|
|
1012
|
+
font-size: 20px;
|
|
1013
|
+
font-size: 1.11111rem; }
|
|
1014
|
+
|
|
1015
|
+
.u-font-size-zeta {
|
|
1016
|
+
font-size: 18px;
|
|
1017
|
+
font-size: 1rem; }
|
|
1018
|
+
|
|
1019
|
+
@media (min-width: 41.11111em) {
|
|
1020
|
+
.u-font-size-default {
|
|
1021
|
+
font-size: 16px;
|
|
1022
|
+
font-size: 1rem; }
|
|
1023
|
+
.u-font-size-alpha {
|
|
1024
|
+
font-size: 32px;
|
|
1025
|
+
font-size: 2rem; }
|
|
1026
|
+
.u-font-size-beta {
|
|
1027
|
+
font-size: 28px;
|
|
1028
|
+
font-size: 1.75rem; }
|
|
1029
|
+
.u-font-size-gamma {
|
|
1030
|
+
font-size: 24px;
|
|
1031
|
+
font-size: 1.5rem; }
|
|
1032
|
+
.u-font-size-delta {
|
|
1033
|
+
font-size: 20px;
|
|
1034
|
+
font-size: 1.25rem; }
|
|
1035
|
+
.u-font-size-epsilon {
|
|
1036
|
+
font-size: 18px;
|
|
1037
|
+
font-size: 1.125rem; }
|
|
1038
|
+
.u-font-size-zeta {
|
|
1039
|
+
font-size: 16px;
|
|
1040
|
+
font-size: 1rem; } }
|
|
1041
|
+
|
|
1042
|
+
.u-font-style-italic {
|
|
1043
|
+
font-style: italic; }
|
|
1044
|
+
|
|
1045
|
+
.u-font-style-normal {
|
|
1046
|
+
font-style: normal; }
|
|
1047
|
+
|
|
1048
|
+
.u-font-weight-bold {
|
|
1049
|
+
font-weight: bold; }
|
|
1050
|
+
|
|
1051
|
+
.u-font-weight-normal {
|
|
1052
|
+
font-weight: normal; }
|
|
1053
|
+
|
|
1054
|
+
.u-margin-none {
|
|
1055
|
+
margin: 0; }
|
|
1056
|
+
|
|
1057
|
+
.u-margin-left-none {
|
|
1058
|
+
margin-left: 0; }
|
|
1059
|
+
|
|
1060
|
+
.u-margin-top-none {
|
|
1061
|
+
margin-top: 0; }
|
|
1062
|
+
|
|
1063
|
+
.u-margin-right-none {
|
|
1064
|
+
margin-right: 0; }
|
|
1065
|
+
|
|
1066
|
+
.u-margin-bottom-none {
|
|
1067
|
+
margin-bottom: 0; }
|
|
1068
|
+
|
|
1069
|
+
.u-margin-xsmall {
|
|
1070
|
+
margin: 0.5rem; }
|
|
1071
|
+
|
|
1072
|
+
.u-margin-left-xsmall {
|
|
1073
|
+
margin-left: 0.5rem; }
|
|
1074
|
+
|
|
1075
|
+
.u-margin-top-xsmall {
|
|
1076
|
+
margin-top: 0.5rem; }
|
|
1077
|
+
|
|
1078
|
+
.u-margin-right-xsmall {
|
|
1079
|
+
margin-right: 0.5rem; }
|
|
1080
|
+
|
|
1081
|
+
.u-margin-bottom-xsmall {
|
|
1082
|
+
margin-bottom: 0.5rem; }
|
|
1083
|
+
|
|
1084
|
+
.u-margin-small {
|
|
1085
|
+
margin: 1rem; }
|
|
1086
|
+
|
|
1087
|
+
.u-margin-left-small {
|
|
1088
|
+
margin-left: 1rem; }
|
|
1089
|
+
|
|
1090
|
+
.u-margin-top-small {
|
|
1091
|
+
margin-top: 1rem; }
|
|
1092
|
+
|
|
1093
|
+
.u-margin-right-small {
|
|
1094
|
+
margin-right: 1rem; }
|
|
1095
|
+
|
|
1096
|
+
.u-margin-bottom-small {
|
|
1097
|
+
margin-bottom: 1rem; }
|
|
1098
|
+
|
|
1099
|
+
.u-margin-default {
|
|
1100
|
+
margin: 2rem; }
|
|
1101
|
+
|
|
1102
|
+
.u-margin-left-default {
|
|
1103
|
+
margin-left: 2rem; }
|
|
1104
|
+
|
|
1105
|
+
.u-margin-top-default {
|
|
1106
|
+
margin-top: 2rem; }
|
|
1107
|
+
|
|
1108
|
+
.u-margin-right-default {
|
|
1109
|
+
margin-right: 2rem; }
|
|
1110
|
+
|
|
1111
|
+
.u-margin-bottom-default {
|
|
1112
|
+
margin-bottom: 2rem; }
|
|
1113
|
+
|
|
1114
|
+
.u-margin-large {
|
|
1115
|
+
margin: 3rem; }
|
|
1116
|
+
|
|
1117
|
+
.u-margin-left-large {
|
|
1118
|
+
margin-left: 3rem; }
|
|
1119
|
+
|
|
1120
|
+
.u-margin-top-large {
|
|
1121
|
+
margin-top: 3rem; }
|
|
1122
|
+
|
|
1123
|
+
.u-margin-right-large {
|
|
1124
|
+
margin-right: 3rem; }
|
|
1125
|
+
|
|
1126
|
+
.u-margin-bottom-large {
|
|
1127
|
+
margin-bottom: 3rem; }
|
|
1128
|
+
|
|
1129
|
+
.u-margin-xlarge {
|
|
1130
|
+
margin: 4rem; }
|
|
1131
|
+
|
|
1132
|
+
.u-margin-left-xlarge {
|
|
1133
|
+
margin-left: 4rem; }
|
|
1134
|
+
|
|
1135
|
+
.u-margin-top-xlarge {
|
|
1136
|
+
margin-top: 4rem; }
|
|
1137
|
+
|
|
1138
|
+
.u-margin-right-xlarge {
|
|
1139
|
+
margin-right: 4rem; }
|
|
1140
|
+
|
|
1141
|
+
.u-margin-bottom-xlarge {
|
|
1142
|
+
margin-bottom: 4rem; }
|
|
1143
|
+
|
|
1144
|
+
.u-padding-none {
|
|
1145
|
+
padding: 0; }
|
|
1146
|
+
|
|
1147
|
+
.u-padding-left-none {
|
|
1148
|
+
padding-left: 0; }
|
|
1149
|
+
|
|
1150
|
+
.u-padding-top-none {
|
|
1151
|
+
padding-top: 0; }
|
|
1152
|
+
|
|
1153
|
+
.u-padding-right-none {
|
|
1154
|
+
padding-right: 0; }
|
|
1155
|
+
|
|
1156
|
+
.u-padding-bottom-none {
|
|
1157
|
+
padding-bottom: 0; }
|
|
1158
|
+
|
|
1159
|
+
.u-padding-xsmall {
|
|
1160
|
+
padding: 0.5rem; }
|
|
1161
|
+
|
|
1162
|
+
.u-padding-left-xsmall {
|
|
1163
|
+
padding-left: 0.5rem; }
|
|
1164
|
+
|
|
1165
|
+
.u-padding-top-xsmall {
|
|
1166
|
+
padding-top: 0.5rem; }
|
|
1167
|
+
|
|
1168
|
+
.u-padding-right-xsmall {
|
|
1169
|
+
padding-right: 0.5rem; }
|
|
1170
|
+
|
|
1171
|
+
.u-padding-bottom-xsmall {
|
|
1172
|
+
padding-bottom: 0.5rem; }
|
|
1173
|
+
|
|
1174
|
+
.u-padding-small {
|
|
1175
|
+
padding: 1rem; }
|
|
1176
|
+
|
|
1177
|
+
.u-padding-left-small {
|
|
1178
|
+
padding-left: 1rem; }
|
|
1179
|
+
|
|
1180
|
+
.u-padding-top-small {
|
|
1181
|
+
padding-top: 1rem; }
|
|
1182
|
+
|
|
1183
|
+
.u-padding-right-small {
|
|
1184
|
+
padding-right: 1rem; }
|
|
1185
|
+
|
|
1186
|
+
.u-padding-bottom-small {
|
|
1187
|
+
padding-bottom: 1rem; }
|
|
1188
|
+
|
|
1189
|
+
.u-padding-default {
|
|
1190
|
+
padding: 2rem; }
|
|
1191
|
+
|
|
1192
|
+
.u-padding-left-default {
|
|
1193
|
+
padding-left: 2rem; }
|
|
1194
|
+
|
|
1195
|
+
.u-padding-top-default {
|
|
1196
|
+
padding-top: 2rem; }
|
|
1197
|
+
|
|
1198
|
+
.u-padding-right-default {
|
|
1199
|
+
padding-right: 2rem; }
|
|
1200
|
+
|
|
1201
|
+
.u-padding-bottom-default {
|
|
1202
|
+
padding-bottom: 2rem; }
|
|
1203
|
+
|
|
1204
|
+
.u-padding-large {
|
|
1205
|
+
padding: 3rem; }
|
|
1206
|
+
|
|
1207
|
+
.u-padding-left-large {
|
|
1208
|
+
padding-left: 3rem; }
|
|
1209
|
+
|
|
1210
|
+
.u-padding-top-large {
|
|
1211
|
+
padding-top: 3rem; }
|
|
1212
|
+
|
|
1213
|
+
.u-padding-right-large {
|
|
1214
|
+
padding-right: 3rem; }
|
|
1215
|
+
|
|
1216
|
+
.u-padding-bottom-large {
|
|
1217
|
+
padding-bottom: 3rem; }
|
|
1218
|
+
|
|
1219
|
+
.u-padding-xlarge {
|
|
1220
|
+
padding: 4rem; }
|
|
1221
|
+
|
|
1222
|
+
.u-padding-left-xlarge {
|
|
1223
|
+
padding-left: 4rem; }
|
|
1224
|
+
|
|
1225
|
+
.u-padding-top-xlarge {
|
|
1226
|
+
padding-top: 4rem; }
|
|
1227
|
+
|
|
1228
|
+
.u-padding-right-xlarge {
|
|
1229
|
+
padding-right: 4rem; }
|
|
1230
|
+
|
|
1231
|
+
.u-padding-bottom-xlarge {
|
|
1232
|
+
padding-bottom: 4rem; }
|
|
1233
|
+
|
|
1234
|
+
.u-position-absolute {
|
|
1235
|
+
position: absolute; }
|
|
1236
|
+
|
|
1237
|
+
.u-position-relative {
|
|
1238
|
+
position: relative; }
|
|
1239
|
+
|
|
1240
|
+
.u-text-align-left {
|
|
1241
|
+
text-align: left; }
|
|
1242
|
+
|
|
1243
|
+
.u-text-align-right {
|
|
1244
|
+
text-align: right; }
|
|
1245
|
+
|
|
1246
|
+
.u-text-align-center {
|
|
1247
|
+
text-align: center; }
|
|
1248
|
+
|
|
1249
|
+
.u-text-transform-uppercase {
|
|
1250
|
+
text-transform: uppercase; }
|
|
1251
|
+
|
|
1252
|
+
.u-text-transform-lowercase {
|
|
1253
|
+
text-transform: lowercase; }
|
|
1254
|
+
|
|
1255
|
+
.u-text-transform-capitalize {
|
|
1256
|
+
text-transform: capitalize; }
|
|
1257
|
+
|
|
1258
|
+
.u-vertical-align-baseline {
|
|
1259
|
+
vertical-align: baseline; }
|
|
1260
|
+
|
|
1261
|
+
.u-vertical-align-sub {
|
|
1262
|
+
vertical-align: sub; }
|
|
1263
|
+
|
|
1264
|
+
.u-vertical-align-super {
|
|
1265
|
+
vertical-align: super; }
|
|
1266
|
+
|
|
1267
|
+
.u-vertical-align-text-top {
|
|
1268
|
+
vertical-align: text-top; }
|
|
1269
|
+
|
|
1270
|
+
.u-vertical-align-text-bottom {
|
|
1271
|
+
vertical-align: text-bottom; }
|
|
1272
|
+
|
|
1273
|
+
.u-vertical-align-middle {
|
|
1274
|
+
vertical-align: middle; }
|
|
1275
|
+
|
|
1276
|
+
.u-vertical-align-top {
|
|
1277
|
+
vertical-align: top; }
|
|
1278
|
+
|
|
1279
|
+
.u-vertical-align-bottom {
|
|
1280
|
+
vertical-align: bottom; }
|
|
1281
|
+
|
|
1282
|
+
.u-white-space-normal {
|
|
1283
|
+
white-space: normal; }
|
|
1284
|
+
|
|
1285
|
+
.u-white-space-nowrap {
|
|
1286
|
+
white-space: nowrap; }
|
|
1287
|
+
|
|
1288
|
+
.u-white-space-pre {
|
|
1289
|
+
white-space: pre; }
|
|
1290
|
+
|
|
1291
|
+
.u-white-space-pre-wrap {
|
|
1292
|
+
white-space: pre-wrap; }
|
|
1293
|
+
|
|
1294
|
+
.u-white-space-pre-line {
|
|
1295
|
+
white-space: pre-line; }
|
|
1296
|
+
|
|
1297
|
+
.u-width-full {
|
|
1298
|
+
width: 100%; }
|