jumbo-jekyll-theme 5.6.9.2 → 5.6.9.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +10 -10
- data/_config.yml +213 -213
- data/_data/example-carousel-data-source.yml +36 -36
- data/_data/footer.yml +33 -33
- data/_data/nav.yml +17 -17
- data/_data/settings.yml +103 -103
- data/_data/tags.yml +11 -11
- data/_data/universal-nav.yml +7 -7
- data/_includes/breadcrumb.html +97 -97
- data/_includes/core/blocks.html +30 -30
- data/_includes/core/button.html +5 -5
- data/_includes/core/buttons.html +5 -5
- data/_includes/core/container_row.html +7 -7
- data/_includes/core/feature_block.html +43 -43
- data/_includes/core/full_width_row.html +5 -5
- data/_includes/core/members-section.html +32 -32
- data/_includes/core/slider.html +33 -33
- data/_includes/core/slider_row.html +2 -2
- data/_includes/core/title.html +3 -3
- data/_includes/core/youtube_video_embed.html +11 -11
- data/_includes/css.html +9 -9
- data/_includes/custom_include.html +13 -13
- data/_includes/custom_include_row.html +562 -562
- data/_includes/display-blog-posts.html +154 -154
- data/_includes/flow_inner.html +19 -19
- data/_includes/footer.html +68 -68
- data/_includes/google-analytics.html +16 -16
- data/_includes/head.html +19 -19
- data/_includes/image.html +6 -6
- data/_includes/javascript.html +10 -10
- data/_includes/jumbotron.html +115 -115
- data/_includes/linaro-404.html +19 -19
- data/_includes/nav.html +153 -153
- data/_includes/pagination.html +38 -38
- data/_includes/post-sidebar.html +182 -182
- data/_includes/responsive-image.html +5 -5
- data/_includes/schema.html +43 -43
- data/_includes/thumb.html +1 -1
- data/_includes/thumbnail_image.html +9 -9
- data/_includes/universal-nav.html +30 -30
- data/_layouts/author.html +5 -5
- data/_layouts/default.html +3 -3
- data/_layouts/error.html +25 -25
- data/_layouts/flow.html +35 -35
- data/_layouts/jumbotron.html +11 -11
- data/_layouts/post-index.html +16 -16
- data/_layouts/post.html +39 -39
- data/_sass/app/overrides.scss +65 -65
- data/_sass/app/search.scss +51 -51
- data/_sass/bootstrap/_variables.scss +932 -932
- data/_sass/core.scss +20 -20
- data/_sass/core/blog.scss +425 -425
- data/_sass/core/carousel-header.scss +90 -90
- data/_sass/core/error.scss +190 -190
- data/_sass/core/flow.scss +186 -186
- data/_sass/core/footer.scss +141 -141
- data/_sass/core/jumbotron.scss +279 -279
- data/_sass/core/normalize.scss +357 -357
- data/_sass/core/theme.scss +871 -871
- data/_sass/home.scss +2 -2
- data/assets/css/main-blog.scss +13 -13
- data/assets/css/main-error.scss +13 -13
- data/assets/css/main.scss +11 -11
- data/assets/js/app/facebook.js +7 -7
- data/assets/js/app/main.js +261 -261
- data/assets/js/pacakge-search.js +9 -9
- data/assets/js/package-blog.js +12 -12
- data/assets/js/package-extended.js +14 -14
- data/assets/js/package-home.js +14 -14
- data/assets/js/package-main.js +13 -13
- data/assets/js/package-search.js +8 -8
- data/assets/js/vendor/fess-ss.min.js +24 -24
- data/robots.txt +9 -9
- metadata +2 -16
data/_sass/core/normalize.scss
CHANGED
@@ -1,358 +1,358 @@
|
|
1
|
-
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
2
|
-
|
3
|
-
/* Document
|
4
|
-
========================================================================== */
|
5
|
-
|
6
|
-
/**
|
7
|
-
* 1. Correct the line height in all browsers.
|
8
|
-
* 2. Prevent adjustments of font size after orientation changes in iOS.
|
9
|
-
*/
|
10
|
-
|
11
|
-
html {
|
12
|
-
line-height: 1.15;
|
13
|
-
/* 1 */
|
14
|
-
-webkit-text-size-adjust: 100%;
|
15
|
-
/* 2 */
|
16
|
-
}
|
17
|
-
|
18
|
-
/* Sections
|
19
|
-
========================================================================== */
|
20
|
-
|
21
|
-
/**
|
22
|
-
* Remove the margin in all browsers.
|
23
|
-
*/
|
24
|
-
|
25
|
-
body {
|
26
|
-
margin: 0;
|
27
|
-
}
|
28
|
-
|
29
|
-
/**
|
30
|
-
* Render the `main` element consistently in IE.
|
31
|
-
*/
|
32
|
-
|
33
|
-
main {
|
34
|
-
display: block;
|
35
|
-
}
|
36
|
-
|
37
|
-
/**
|
38
|
-
* Correct the font size and margin on `h1` elements within `section` and
|
39
|
-
* `article` contexts in Chrome, Firefox, and Safari.
|
40
|
-
*/
|
41
|
-
|
42
|
-
h1 {
|
43
|
-
font-size: 2em;
|
44
|
-
margin: 0.67em 0;
|
45
|
-
}
|
46
|
-
|
47
|
-
/* Grouping content
|
48
|
-
========================================================================== */
|
49
|
-
|
50
|
-
/**
|
51
|
-
* 1. Add the correct box sizing in Firefox.
|
52
|
-
* 2. Show the overflow in Edge and IE.
|
53
|
-
*/
|
54
|
-
|
55
|
-
hr {
|
56
|
-
box-sizing: content-box;
|
57
|
-
/* 1 */
|
58
|
-
height: 0;
|
59
|
-
/* 1 */
|
60
|
-
overflow: visible;
|
61
|
-
/* 2 */
|
62
|
-
}
|
63
|
-
|
64
|
-
/**
|
65
|
-
* 1. Correct the inheritance and scaling of font size in all browsers.
|
66
|
-
* 2. Correct the odd `em` font sizing in all browsers.
|
67
|
-
*/
|
68
|
-
|
69
|
-
pre {
|
70
|
-
font-family: monospace, monospace;
|
71
|
-
/* 1 */
|
72
|
-
font-size: 1em;
|
73
|
-
/* 2 */
|
74
|
-
}
|
75
|
-
|
76
|
-
/* Text-level semantics
|
77
|
-
========================================================================== */
|
78
|
-
|
79
|
-
/**
|
80
|
-
* Remove the gray background on active links in IE 10.
|
81
|
-
*/
|
82
|
-
|
83
|
-
a {
|
84
|
-
background-color: transparent;
|
85
|
-
}
|
86
|
-
|
87
|
-
/**
|
88
|
-
* 1. Remove the bottom border in Chrome 57-
|
89
|
-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
90
|
-
*/
|
91
|
-
|
92
|
-
abbr[title] {
|
93
|
-
border-bottom: none;
|
94
|
-
/* 1 */
|
95
|
-
text-decoration: underline;
|
96
|
-
/* 2 */
|
97
|
-
text-decoration: underline dotted;
|
98
|
-
/* 2 */
|
99
|
-
}
|
100
|
-
|
101
|
-
/**
|
102
|
-
* Add the correct font weight in Chrome, Edge, and Safari.
|
103
|
-
*/
|
104
|
-
|
105
|
-
b, strong {
|
106
|
-
font-weight: bolder;
|
107
|
-
}
|
108
|
-
|
109
|
-
/**
|
110
|
-
* 1. Correct the inheritance and scaling of font size in all browsers.
|
111
|
-
* 2. Correct the odd `em` font sizing in all browsers.
|
112
|
-
*/
|
113
|
-
|
114
|
-
code, kbd, samp {
|
115
|
-
font-family: monospace, monospace;
|
116
|
-
/* 1 */
|
117
|
-
font-size: 1em;
|
118
|
-
/* 2 */
|
119
|
-
}
|
120
|
-
|
121
|
-
/**
|
122
|
-
* Add the correct font size in all browsers.
|
123
|
-
*/
|
124
|
-
|
125
|
-
small {
|
126
|
-
font-size: 80%;
|
127
|
-
}
|
128
|
-
|
129
|
-
/**
|
130
|
-
* Prevent `sub` and `sup` elements from affecting the line height in
|
131
|
-
* all browsers.
|
132
|
-
*/
|
133
|
-
|
134
|
-
sub, sup {
|
135
|
-
font-size: 75%;
|
136
|
-
line-height: 0;
|
137
|
-
position: relative;
|
138
|
-
vertical-align: baseline;
|
139
|
-
}
|
140
|
-
|
141
|
-
sub {
|
142
|
-
bottom: -0.25em;
|
143
|
-
}
|
144
|
-
|
145
|
-
sup {
|
146
|
-
top: -0.5em;
|
147
|
-
}
|
148
|
-
|
149
|
-
/* Embedded content
|
150
|
-
========================================================================== */
|
151
|
-
|
152
|
-
/**
|
153
|
-
* Remove the border on images inside links in IE 10.
|
154
|
-
*/
|
155
|
-
|
156
|
-
img {
|
157
|
-
border-style: none;
|
158
|
-
}
|
159
|
-
|
160
|
-
/* Forms
|
161
|
-
========================================================================== */
|
162
|
-
|
163
|
-
/**
|
164
|
-
* 1. Change the font styles in all browsers.
|
165
|
-
* 2. Remove the margin in Firefox and Safari.
|
166
|
-
*/
|
167
|
-
|
168
|
-
button, input, optgroup, select, textarea {
|
169
|
-
font-family: inherit;
|
170
|
-
/* 1 */
|
171
|
-
font-size: 100%;
|
172
|
-
/* 1 */
|
173
|
-
line-height: 1.15;
|
174
|
-
/* 1 */
|
175
|
-
margin: 0;
|
176
|
-
/* 2 */
|
177
|
-
}
|
178
|
-
|
179
|
-
/**
|
180
|
-
* Show the overflow in IE.
|
181
|
-
* 1. Show the overflow in Edge.
|
182
|
-
*/
|
183
|
-
|
184
|
-
button, input {
|
185
|
-
/* 1 */
|
186
|
-
overflow: visible;
|
187
|
-
}
|
188
|
-
|
189
|
-
/**
|
190
|
-
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
191
|
-
* 1. Remove the inheritance of text transform in Firefox.
|
192
|
-
*/
|
193
|
-
|
194
|
-
button, select {
|
195
|
-
/* 1 */
|
196
|
-
text-transform: none;
|
197
|
-
}
|
198
|
-
|
199
|
-
/**
|
200
|
-
* Correct the inability to style clickable types in iOS and Safari.
|
201
|
-
*/
|
202
|
-
|
203
|
-
button, [type="button"], [type="reset"], [type="submit"] {
|
204
|
-
-webkit-appearance: button;
|
205
|
-
}
|
206
|
-
|
207
|
-
/**
|
208
|
-
* Remove the inner border and padding in Firefox.
|
209
|
-
*/
|
210
|
-
|
211
|
-
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
|
212
|
-
border-style: none;
|
213
|
-
padding: 0;
|
214
|
-
}
|
215
|
-
|
216
|
-
/**
|
217
|
-
* Restore the focus styles unset by the previous rule.
|
218
|
-
*/
|
219
|
-
|
220
|
-
button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
|
221
|
-
outline: 1px dotted ButtonText;
|
222
|
-
}
|
223
|
-
|
224
|
-
/**
|
225
|
-
* Correct the padding in Firefox.
|
226
|
-
*/
|
227
|
-
|
228
|
-
fieldset {
|
229
|
-
padding: 0.35em 0.75em 0.625em;
|
230
|
-
}
|
231
|
-
|
232
|
-
/**
|
233
|
-
* 1. Correct the text wrapping in Edge and IE.
|
234
|
-
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
235
|
-
* 3. Remove the padding so developers are not caught out when they zero out
|
236
|
-
* `fieldset` elements in all browsers.
|
237
|
-
*/
|
238
|
-
|
239
|
-
legend {
|
240
|
-
box-sizing: border-box;
|
241
|
-
/* 1 */
|
242
|
-
color: inherit;
|
243
|
-
/* 2 */
|
244
|
-
display: table;
|
245
|
-
/* 1 */
|
246
|
-
max-width: 100%;
|
247
|
-
/* 1 */
|
248
|
-
padding: 0;
|
249
|
-
/* 3 */
|
250
|
-
white-space: normal;
|
251
|
-
/* 1 */
|
252
|
-
}
|
253
|
-
|
254
|
-
/**
|
255
|
-
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
256
|
-
*/
|
257
|
-
|
258
|
-
progress {
|
259
|
-
vertical-align: baseline;
|
260
|
-
}
|
261
|
-
|
262
|
-
/**
|
263
|
-
* Remove the default vertical scrollbar in IE 10+.
|
264
|
-
*/
|
265
|
-
|
266
|
-
textarea {
|
267
|
-
overflow: auto;
|
268
|
-
}
|
269
|
-
|
270
|
-
/**
|
271
|
-
* 1. Add the correct box sizing in IE 10.
|
272
|
-
* 2. Remove the padding in IE 10.
|
273
|
-
*/
|
274
|
-
|
275
|
-
[type="checkbox"], [type="radio"] {
|
276
|
-
box-sizing: border-box;
|
277
|
-
/* 1 */
|
278
|
-
padding: 0;
|
279
|
-
/* 2 */
|
280
|
-
}
|
281
|
-
|
282
|
-
/**
|
283
|
-
* Correct the cursor style of increment and decrement buttons in Chrome.
|
284
|
-
*/
|
285
|
-
|
286
|
-
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
|
287
|
-
height: auto;
|
288
|
-
}
|
289
|
-
|
290
|
-
/**
|
291
|
-
* 1. Correct the odd appearance in Chrome and Safari.
|
292
|
-
* 2. Correct the outline style in Safari.
|
293
|
-
*/
|
294
|
-
|
295
|
-
[type="search"] {
|
296
|
-
-webkit-appearance: textfield;
|
297
|
-
/* 1 */
|
298
|
-
outline-offset: -2px;
|
299
|
-
/* 2 */
|
300
|
-
}
|
301
|
-
|
302
|
-
/**
|
303
|
-
* Remove the inner padding in Chrome and Safari on macOS.
|
304
|
-
*/
|
305
|
-
|
306
|
-
[type="search"]::-webkit-search-decoration {
|
307
|
-
-webkit-appearance: none;
|
308
|
-
}
|
309
|
-
|
310
|
-
/**
|
311
|
-
* 1. Correct the inability to style clickable types in iOS and Safari.
|
312
|
-
* 2. Change font properties to `inherit` in Safari.
|
313
|
-
*/
|
314
|
-
|
315
|
-
::-webkit-file-upload-button {
|
316
|
-
-webkit-appearance: button;
|
317
|
-
/* 1 */
|
318
|
-
font: inherit;
|
319
|
-
/* 2 */
|
320
|
-
}
|
321
|
-
|
322
|
-
/* Interactive
|
323
|
-
========================================================================== */
|
324
|
-
|
325
|
-
/*
|
326
|
-
* Add the correct display in Edge, IE 10+, and Firefox.
|
327
|
-
*/
|
328
|
-
|
329
|
-
details {
|
330
|
-
display: block;
|
331
|
-
}
|
332
|
-
|
333
|
-
/*
|
334
|
-
* Add the correct display in all browsers.
|
335
|
-
*/
|
336
|
-
|
337
|
-
summary {
|
338
|
-
display: list-item;
|
339
|
-
}
|
340
|
-
|
341
|
-
/* Misc
|
342
|
-
========================================================================== */
|
343
|
-
|
344
|
-
/**
|
345
|
-
* Add the correct display in IE 10+.
|
346
|
-
*/
|
347
|
-
|
348
|
-
template {
|
349
|
-
display: none;
|
350
|
-
}
|
351
|
-
|
352
|
-
/**
|
353
|
-
* Add the correct display in IE 10.
|
354
|
-
*/
|
355
|
-
|
356
|
-
[hidden] {
|
357
|
-
display: none;
|
1
|
+
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
2
|
+
|
3
|
+
/* Document
|
4
|
+
========================================================================== */
|
5
|
+
|
6
|
+
/**
|
7
|
+
* 1. Correct the line height in all browsers.
|
8
|
+
* 2. Prevent adjustments of font size after orientation changes in iOS.
|
9
|
+
*/
|
10
|
+
|
11
|
+
html {
|
12
|
+
line-height: 1.15;
|
13
|
+
/* 1 */
|
14
|
+
-webkit-text-size-adjust: 100%;
|
15
|
+
/* 2 */
|
16
|
+
}
|
17
|
+
|
18
|
+
/* Sections
|
19
|
+
========================================================================== */
|
20
|
+
|
21
|
+
/**
|
22
|
+
* Remove the margin in all browsers.
|
23
|
+
*/
|
24
|
+
|
25
|
+
body {
|
26
|
+
margin: 0;
|
27
|
+
}
|
28
|
+
|
29
|
+
/**
|
30
|
+
* Render the `main` element consistently in IE.
|
31
|
+
*/
|
32
|
+
|
33
|
+
main {
|
34
|
+
display: block;
|
35
|
+
}
|
36
|
+
|
37
|
+
/**
|
38
|
+
* Correct the font size and margin on `h1` elements within `section` and
|
39
|
+
* `article` contexts in Chrome, Firefox, and Safari.
|
40
|
+
*/
|
41
|
+
|
42
|
+
h1 {
|
43
|
+
font-size: 2em;
|
44
|
+
margin: 0.67em 0;
|
45
|
+
}
|
46
|
+
|
47
|
+
/* Grouping content
|
48
|
+
========================================================================== */
|
49
|
+
|
50
|
+
/**
|
51
|
+
* 1. Add the correct box sizing in Firefox.
|
52
|
+
* 2. Show the overflow in Edge and IE.
|
53
|
+
*/
|
54
|
+
|
55
|
+
hr {
|
56
|
+
box-sizing: content-box;
|
57
|
+
/* 1 */
|
58
|
+
height: 0;
|
59
|
+
/* 1 */
|
60
|
+
overflow: visible;
|
61
|
+
/* 2 */
|
62
|
+
}
|
63
|
+
|
64
|
+
/**
|
65
|
+
* 1. Correct the inheritance and scaling of font size in all browsers.
|
66
|
+
* 2. Correct the odd `em` font sizing in all browsers.
|
67
|
+
*/
|
68
|
+
|
69
|
+
pre {
|
70
|
+
font-family: monospace, monospace;
|
71
|
+
/* 1 */
|
72
|
+
font-size: 1em;
|
73
|
+
/* 2 */
|
74
|
+
}
|
75
|
+
|
76
|
+
/* Text-level semantics
|
77
|
+
========================================================================== */
|
78
|
+
|
79
|
+
/**
|
80
|
+
* Remove the gray background on active links in IE 10.
|
81
|
+
*/
|
82
|
+
|
83
|
+
a {
|
84
|
+
background-color: transparent;
|
85
|
+
}
|
86
|
+
|
87
|
+
/**
|
88
|
+
* 1. Remove the bottom border in Chrome 57-
|
89
|
+
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
90
|
+
*/
|
91
|
+
|
92
|
+
abbr[title] {
|
93
|
+
border-bottom: none;
|
94
|
+
/* 1 */
|
95
|
+
text-decoration: underline;
|
96
|
+
/* 2 */
|
97
|
+
text-decoration: underline dotted;
|
98
|
+
/* 2 */
|
99
|
+
}
|
100
|
+
|
101
|
+
/**
|
102
|
+
* Add the correct font weight in Chrome, Edge, and Safari.
|
103
|
+
*/
|
104
|
+
|
105
|
+
b, strong {
|
106
|
+
font-weight: bolder;
|
107
|
+
}
|
108
|
+
|
109
|
+
/**
|
110
|
+
* 1. Correct the inheritance and scaling of font size in all browsers.
|
111
|
+
* 2. Correct the odd `em` font sizing in all browsers.
|
112
|
+
*/
|
113
|
+
|
114
|
+
code, kbd, samp {
|
115
|
+
font-family: monospace, monospace;
|
116
|
+
/* 1 */
|
117
|
+
font-size: 1em;
|
118
|
+
/* 2 */
|
119
|
+
}
|
120
|
+
|
121
|
+
/**
|
122
|
+
* Add the correct font size in all browsers.
|
123
|
+
*/
|
124
|
+
|
125
|
+
small {
|
126
|
+
font-size: 80%;
|
127
|
+
}
|
128
|
+
|
129
|
+
/**
|
130
|
+
* Prevent `sub` and `sup` elements from affecting the line height in
|
131
|
+
* all browsers.
|
132
|
+
*/
|
133
|
+
|
134
|
+
sub, sup {
|
135
|
+
font-size: 75%;
|
136
|
+
line-height: 0;
|
137
|
+
position: relative;
|
138
|
+
vertical-align: baseline;
|
139
|
+
}
|
140
|
+
|
141
|
+
sub {
|
142
|
+
bottom: -0.25em;
|
143
|
+
}
|
144
|
+
|
145
|
+
sup {
|
146
|
+
top: -0.5em;
|
147
|
+
}
|
148
|
+
|
149
|
+
/* Embedded content
|
150
|
+
========================================================================== */
|
151
|
+
|
152
|
+
/**
|
153
|
+
* Remove the border on images inside links in IE 10.
|
154
|
+
*/
|
155
|
+
|
156
|
+
img {
|
157
|
+
border-style: none;
|
158
|
+
}
|
159
|
+
|
160
|
+
/* Forms
|
161
|
+
========================================================================== */
|
162
|
+
|
163
|
+
/**
|
164
|
+
* 1. Change the font styles in all browsers.
|
165
|
+
* 2. Remove the margin in Firefox and Safari.
|
166
|
+
*/
|
167
|
+
|
168
|
+
button, input, optgroup, select, textarea {
|
169
|
+
font-family: inherit;
|
170
|
+
/* 1 */
|
171
|
+
font-size: 100%;
|
172
|
+
/* 1 */
|
173
|
+
line-height: 1.15;
|
174
|
+
/* 1 */
|
175
|
+
margin: 0;
|
176
|
+
/* 2 */
|
177
|
+
}
|
178
|
+
|
179
|
+
/**
|
180
|
+
* Show the overflow in IE.
|
181
|
+
* 1. Show the overflow in Edge.
|
182
|
+
*/
|
183
|
+
|
184
|
+
button, input {
|
185
|
+
/* 1 */
|
186
|
+
overflow: visible;
|
187
|
+
}
|
188
|
+
|
189
|
+
/**
|
190
|
+
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
191
|
+
* 1. Remove the inheritance of text transform in Firefox.
|
192
|
+
*/
|
193
|
+
|
194
|
+
button, select {
|
195
|
+
/* 1 */
|
196
|
+
text-transform: none;
|
197
|
+
}
|
198
|
+
|
199
|
+
/**
|
200
|
+
* Correct the inability to style clickable types in iOS and Safari.
|
201
|
+
*/
|
202
|
+
|
203
|
+
button, [type="button"], [type="reset"], [type="submit"] {
|
204
|
+
-webkit-appearance: button;
|
205
|
+
}
|
206
|
+
|
207
|
+
/**
|
208
|
+
* Remove the inner border and padding in Firefox.
|
209
|
+
*/
|
210
|
+
|
211
|
+
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
|
212
|
+
border-style: none;
|
213
|
+
padding: 0;
|
214
|
+
}
|
215
|
+
|
216
|
+
/**
|
217
|
+
* Restore the focus styles unset by the previous rule.
|
218
|
+
*/
|
219
|
+
|
220
|
+
button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
|
221
|
+
outline: 1px dotted ButtonText;
|
222
|
+
}
|
223
|
+
|
224
|
+
/**
|
225
|
+
* Correct the padding in Firefox.
|
226
|
+
*/
|
227
|
+
|
228
|
+
fieldset {
|
229
|
+
padding: 0.35em 0.75em 0.625em;
|
230
|
+
}
|
231
|
+
|
232
|
+
/**
|
233
|
+
* 1. Correct the text wrapping in Edge and IE.
|
234
|
+
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
235
|
+
* 3. Remove the padding so developers are not caught out when they zero out
|
236
|
+
* `fieldset` elements in all browsers.
|
237
|
+
*/
|
238
|
+
|
239
|
+
legend {
|
240
|
+
box-sizing: border-box;
|
241
|
+
/* 1 */
|
242
|
+
color: inherit;
|
243
|
+
/* 2 */
|
244
|
+
display: table;
|
245
|
+
/* 1 */
|
246
|
+
max-width: 100%;
|
247
|
+
/* 1 */
|
248
|
+
padding: 0;
|
249
|
+
/* 3 */
|
250
|
+
white-space: normal;
|
251
|
+
/* 1 */
|
252
|
+
}
|
253
|
+
|
254
|
+
/**
|
255
|
+
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
256
|
+
*/
|
257
|
+
|
258
|
+
progress {
|
259
|
+
vertical-align: baseline;
|
260
|
+
}
|
261
|
+
|
262
|
+
/**
|
263
|
+
* Remove the default vertical scrollbar in IE 10+.
|
264
|
+
*/
|
265
|
+
|
266
|
+
textarea {
|
267
|
+
overflow: auto;
|
268
|
+
}
|
269
|
+
|
270
|
+
/**
|
271
|
+
* 1. Add the correct box sizing in IE 10.
|
272
|
+
* 2. Remove the padding in IE 10.
|
273
|
+
*/
|
274
|
+
|
275
|
+
[type="checkbox"], [type="radio"] {
|
276
|
+
box-sizing: border-box;
|
277
|
+
/* 1 */
|
278
|
+
padding: 0;
|
279
|
+
/* 2 */
|
280
|
+
}
|
281
|
+
|
282
|
+
/**
|
283
|
+
* Correct the cursor style of increment and decrement buttons in Chrome.
|
284
|
+
*/
|
285
|
+
|
286
|
+
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
|
287
|
+
height: auto;
|
288
|
+
}
|
289
|
+
|
290
|
+
/**
|
291
|
+
* 1. Correct the odd appearance in Chrome and Safari.
|
292
|
+
* 2. Correct the outline style in Safari.
|
293
|
+
*/
|
294
|
+
|
295
|
+
[type="search"] {
|
296
|
+
-webkit-appearance: textfield;
|
297
|
+
/* 1 */
|
298
|
+
outline-offset: -2px;
|
299
|
+
/* 2 */
|
300
|
+
}
|
301
|
+
|
302
|
+
/**
|
303
|
+
* Remove the inner padding in Chrome and Safari on macOS.
|
304
|
+
*/
|
305
|
+
|
306
|
+
[type="search"]::-webkit-search-decoration {
|
307
|
+
-webkit-appearance: none;
|
308
|
+
}
|
309
|
+
|
310
|
+
/**
|
311
|
+
* 1. Correct the inability to style clickable types in iOS and Safari.
|
312
|
+
* 2. Change font properties to `inherit` in Safari.
|
313
|
+
*/
|
314
|
+
|
315
|
+
::-webkit-file-upload-button {
|
316
|
+
-webkit-appearance: button;
|
317
|
+
/* 1 */
|
318
|
+
font: inherit;
|
319
|
+
/* 2 */
|
320
|
+
}
|
321
|
+
|
322
|
+
/* Interactive
|
323
|
+
========================================================================== */
|
324
|
+
|
325
|
+
/*
|
326
|
+
* Add the correct display in Edge, IE 10+, and Firefox.
|
327
|
+
*/
|
328
|
+
|
329
|
+
details {
|
330
|
+
display: block;
|
331
|
+
}
|
332
|
+
|
333
|
+
/*
|
334
|
+
* Add the correct display in all browsers.
|
335
|
+
*/
|
336
|
+
|
337
|
+
summary {
|
338
|
+
display: list-item;
|
339
|
+
}
|
340
|
+
|
341
|
+
/* Misc
|
342
|
+
========================================================================== */
|
343
|
+
|
344
|
+
/**
|
345
|
+
* Add the correct display in IE 10+.
|
346
|
+
*/
|
347
|
+
|
348
|
+
template {
|
349
|
+
display: none;
|
350
|
+
}
|
351
|
+
|
352
|
+
/**
|
353
|
+
* Add the correct display in IE 10.
|
354
|
+
*/
|
355
|
+
|
356
|
+
[hidden] {
|
357
|
+
display: none;
|
358
358
|
}
|