sass-zero 0.0.43 → 0.0.47
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 +4 -4
- data/Example.html +13 -13
- data/README.md +3 -0
- data/app/assets/stylesheets/sass-zero/base/normalize.css +159 -223
- data/app/assets/stylesheets/sass-zero/base/preflight.scss +39 -18
- data/app/assets/stylesheets/sass-zero/breadboard.scss +58 -76
- data/app/assets/stylesheets/sass-zero/mixins.scss +13 -33
- data/app/assets/stylesheets/sass-zero/utilities/align.scss +28 -0
- data/app/assets/stylesheets/sass-zero/utilities/container.scss +36 -0
- data/app/assets/stylesheets/sass-zero/utilities/flex.scss +3 -3
- data/app/assets/stylesheets/sass-zero/utilities/layout.scss +40 -3
- data/app/assets/stylesheets/sass-zero/utilities/list.scss +21 -11
- data/app/assets/stylesheets/sass-zero/utilities/position.scss +14 -6
- data/app/assets/stylesheets/sass-zero/utilities/text.scss +56 -85
- data/app/assets/stylesheets/sass-zero/utilities.scss +2 -0
- data/app/assets/stylesheets/sass-zero/variables/border.scss +1 -1
- data/app/assets/stylesheets/sass-zero/variables/colors.scss +11 -10
- data/app/assets/stylesheets/sass-zero/variables/height.scss +37 -0
- data/app/assets/stylesheets/sass-zero/variables/spacing.scss +36 -32
- data/app/assets/stylesheets/sass-zero/variables/width.scss +28 -45
- data/app/assets/stylesheets/sass-zero/variables.scss +1 -0
- data/lib/sass/zero/version.rb +1 -1
- data/package.json +1 -1
- data/sass-zero.gemspec +1 -1
- metadata +13 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a31299ba5a18323b097072ca19ed18e074a33cceae5d52d8dcb7defdba8ac31
|
4
|
+
data.tar.gz: d21a8567351022034bbcf179130c9dd23a848e42a134419758dc5a902417b129
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 99218a1afd73ea6f469085ba8ce0540010fcc50a47b36baa03f1e9a59c5f2414077e0d99871ae15165f409306636ea49236209d82b72c7c8330f80c23869c9fa
|
7
|
+
data.tar.gz: a93203f808882fdc36b682499cbfd7792e7c40c7d501b966b91dee5a0387b18404d8cf9c92b9f748ac570b7551a87639e61a94411eecabddfd48bc33b263c846
|
data/Example.html
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
<main>
|
1
|
+
<main class="container">
|
2
2
|
<p>The base type is 1.6rem (16px) over 1.6 line height (24px)</p>
|
3
|
-
<a href="#">Anchor</a>
|
3
|
+
<a href="#" class="txt--underline">Anchor</a>
|
4
4
|
<em>Emphasis</em>
|
5
5
|
<small>Small</small>
|
6
6
|
<strong>Strong</strong>
|
@@ -24,10 +24,10 @@
|
|
24
24
|
|
25
25
|
<form class="push-lg--bottom">
|
26
26
|
<div class="push-md--bottom">
|
27
|
-
<label for="nameField">Name</label>
|
27
|
+
<label for="nameField" class="u-display-b txt--bold">Name</label>
|
28
28
|
<input type="text" placeholder="CJ Patoilo" id="nameField" class="input">
|
29
|
-
<label for="ageRangeField">Age Range</label>
|
30
29
|
|
30
|
+
<label for="ageRangeField" class="u-display-b txt--bold">Age Range</label>
|
31
31
|
<select id="ageRangeField" class="input input--select">
|
32
32
|
<option value="0-13">0-13</option>
|
33
33
|
<option value="14-17">14-17</option>
|
@@ -35,36 +35,36 @@
|
|
35
35
|
<option value="24+">24+</option>
|
36
36
|
</select>
|
37
37
|
|
38
|
-
<label for="commentField">Comment</label>
|
38
|
+
<label for="commentField" class="u-display-b txt--bold">Comment</label>
|
39
39
|
<textarea placeholder="Hi CJ …" id="commentField" rows="3" class="input"></textarea>
|
40
40
|
|
41
41
|
<div class="push-md--bottom">
|
42
42
|
<div>
|
43
43
|
<input type="checkbox" name="option1" value="1" class="checkbox" checked>
|
44
|
-
<label for="option1">Option 1</label>
|
44
|
+
<label for="option1" class="u-display-ib">Option 1</label>
|
45
45
|
</div>
|
46
46
|
<div>
|
47
47
|
<input type="checkbox" name="option2" value="2" class="checkbox">
|
48
|
-
<label for="option2">Option 2</label>
|
48
|
+
<label for="option2" class="u-display-ib">Option 2</label>
|
49
49
|
</div>
|
50
50
|
<div>
|
51
51
|
<input type="checkbox" name="option3" value="3" class="checkbox">
|
52
|
-
<label for="option3">Option 3</label>
|
52
|
+
<label for="option3" class="u-display-ib">Option 3</label>
|
53
53
|
</div>
|
54
54
|
</div>
|
55
55
|
|
56
56
|
<div class="push-md--bottom">
|
57
57
|
<div>
|
58
58
|
<input type="radio" name="radio" value="1" class="radio" checked>
|
59
|
-
<label for="radio">Option 1</label>
|
59
|
+
<label for="radio" class="u-display-ib">Option 1</label>
|
60
60
|
</div>
|
61
61
|
<div>
|
62
62
|
<input type="radio" name="radio" value="2" class="radio">
|
63
|
-
<label for="radio">Option 2</label>
|
63
|
+
<label for="radio" class="u-display-ib">Option 2</label>
|
64
64
|
</div>
|
65
65
|
<div>
|
66
66
|
<input type="radio" name="radio" value="3" class="radio">
|
67
|
-
<label for="radio">Option 3</label>
|
67
|
+
<label for="radio" class="u-display-ib">Option 3</label>
|
68
68
|
</div>
|
69
69
|
</div>
|
70
70
|
</div>
|
@@ -113,13 +113,13 @@
|
|
113
113
|
|
114
114
|
<hr>
|
115
115
|
|
116
|
-
<ul>
|
116
|
+
<ul class="list--unindented ">
|
117
117
|
<li>Unordered list item 1</li>
|
118
118
|
<li>Unordered list item 2</li>
|
119
119
|
<li>Unordered list item 3</li>
|
120
120
|
</ul>
|
121
121
|
|
122
|
-
<ol>
|
122
|
+
<ol class="list--unindented ">
|
123
123
|
<li>Ordered list item 1</li>
|
124
124
|
<li>Ordered list item 2</li>
|
125
125
|
<li>Ordered list item 3</li>
|
data/README.md
CHANGED
@@ -46,12 +46,15 @@ Developers should be able to produce your own design, [Refactoring UI](https://r
|
|
46
46
|
- [Transition](https://github.com/lazaronixon/sass-zero/blob/master/app/assets/stylesheets/sass-zero/variables/transition.scss)
|
47
47
|
- [Typography](https://github.com/lazaronixon/sass-zero/blob/master/app/assets/stylesheets/sass-zero/variables/typography.scss)
|
48
48
|
- [Width](https://github.com/lazaronixon/sass-zero/blob/master/app/assets/stylesheets/sass-zero/variables/width.scss)
|
49
|
+
- [Height](https://github.com/lazaronixon/sass-zero/blob/master/app/assets/stylesheets/sass-zero/variables/height.scss)
|
49
50
|
- [Z-Index](https://github.com/lazaronixon/sass-zero/blob/master/app/assets/stylesheets/sass-zero/variables/zindex.scss)
|
50
51
|
|
51
52
|
|
52
53
|
### Utilities
|
53
54
|
|
55
|
+
- [Align](https://github.com/lazaronixon/sass-zero/blob/master/app/assets/stylesheets/sass-zero/utilities/align.scss)
|
54
56
|
- [Animation](https://github.com/lazaronixon/sass-zero/blob/master/app/assets/stylesheets/sass-zero/utilities/animation.scss)
|
57
|
+
- [Container](https://github.com/lazaronixon/sass-zero/blob/master/app/assets/stylesheets/sass-zero/utilities/container.scss)
|
55
58
|
- [Margin Push](https://github.com/lazaronixon/sass-zero/blob/master/app/assets/stylesheets/sass-zero/utilities/push.scss)
|
56
59
|
- [Margin Pull](https://github.com/lazaronixon/sass-zero/blob/master/app/assets/stylesheets/sass-zero/utilities/pull.scss)
|
57
60
|
- [Margin Reset](https://github.com/lazaronixon/sass-zero/blob/master/app/assets/stylesheets/sass-zero/utilities/flush.scss)
|
@@ -1,349 +1,285 @@
|
|
1
|
-
/*! normalize
|
1
|
+
/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
|
2
2
|
|
3
|
-
/*
|
4
|
-
|
3
|
+
/*
|
4
|
+
Document
|
5
|
+
========
|
6
|
+
*/
|
5
7
|
|
6
8
|
/**
|
7
|
-
|
8
|
-
|
9
|
-
*/
|
9
|
+
Use a better box model (opinionated).
|
10
|
+
*/
|
10
11
|
|
11
|
-
|
12
|
-
|
13
|
-
|
12
|
+
*,
|
13
|
+
::before,
|
14
|
+
::after {
|
15
|
+
box-sizing: border-box;
|
14
16
|
}
|
15
17
|
|
16
|
-
/* Sections
|
17
|
-
========================================================================== */
|
18
|
-
|
19
18
|
/**
|
20
|
-
|
21
|
-
|
19
|
+
1. Correct the line height in all browsers.
|
20
|
+
2. Prevent adjustments of font size after orientation changes in iOS.
|
21
|
+
3. Use a more readable tab size (opinionated).
|
22
|
+
*/
|
22
23
|
|
23
|
-
|
24
|
-
|
24
|
+
html {
|
25
|
+
line-height: 1.15; /* 1 */
|
26
|
+
-webkit-text-size-adjust: 100%; /* 2 */
|
27
|
+
-moz-tab-size: 4; /* 3 */
|
28
|
+
tab-size: 4; /* 3 */
|
25
29
|
}
|
26
30
|
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
main {
|
32
|
-
display: block;
|
33
|
-
}
|
31
|
+
/*
|
32
|
+
Sections
|
33
|
+
========
|
34
|
+
*/
|
34
35
|
|
35
36
|
/**
|
36
|
-
|
37
|
-
|
38
|
-
|
37
|
+
1. Remove the margin in all browsers.
|
38
|
+
2. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
|
39
|
+
*/
|
39
40
|
|
40
|
-
|
41
|
-
|
42
|
-
|
41
|
+
body {
|
42
|
+
margin: 0; /* 1 */
|
43
|
+
font-family:
|
44
|
+
system-ui,
|
45
|
+
-apple-system, /* Firefox supports this but not yet `system-ui` */
|
46
|
+
'Segoe UI',
|
47
|
+
Roboto,
|
48
|
+
Helvetica,
|
49
|
+
Arial,
|
50
|
+
sans-serif,
|
51
|
+
'Apple Color Emoji',
|
52
|
+
'Segoe UI Emoji'; /* 2 */
|
43
53
|
}
|
44
54
|
|
45
|
-
/*
|
46
|
-
|
55
|
+
/*
|
56
|
+
Grouping content
|
57
|
+
================
|
58
|
+
*/
|
47
59
|
|
48
60
|
/**
|
49
|
-
|
50
|
-
|
51
|
-
|
61
|
+
1. Add the correct height in Firefox.
|
62
|
+
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
63
|
+
*/
|
52
64
|
|
53
65
|
hr {
|
54
|
-
|
55
|
-
|
56
|
-
overflow: visible; /* 2 */
|
57
|
-
}
|
58
|
-
|
59
|
-
/**
|
60
|
-
* 1. Correct the inheritance and scaling of font size in all browsers.
|
61
|
-
* 2. Correct the odd `em` font sizing in all browsers.
|
62
|
-
*/
|
63
|
-
|
64
|
-
pre {
|
65
|
-
font-family: monospace, monospace; /* 1 */
|
66
|
-
font-size: 1em; /* 2 */
|
66
|
+
height: 0; /* 1 */
|
67
|
+
color: inherit; /* 2 */
|
67
68
|
}
|
68
69
|
|
69
|
-
/*
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
* Remove the gray background on active links in IE 10.
|
74
|
-
*/
|
75
|
-
|
76
|
-
a {
|
77
|
-
background-color: transparent;
|
78
|
-
}
|
70
|
+
/*
|
71
|
+
Text-level semantics
|
72
|
+
====================
|
73
|
+
*/
|
79
74
|
|
80
75
|
/**
|
81
|
-
|
82
|
-
|
83
|
-
*/
|
76
|
+
Add the correct text decoration in Chrome, Edge, and Safari.
|
77
|
+
*/
|
84
78
|
|
85
79
|
abbr[title] {
|
86
|
-
|
87
|
-
text-decoration: underline; /* 2 */
|
88
|
-
text-decoration: underline dotted; /* 2 */
|
80
|
+
text-decoration: underline dotted;
|
89
81
|
}
|
90
82
|
|
91
83
|
/**
|
92
|
-
|
93
|
-
|
84
|
+
Add the correct font weight in Edge and Safari.
|
85
|
+
*/
|
94
86
|
|
95
87
|
b,
|
96
88
|
strong {
|
97
|
-
|
89
|
+
font-weight: bolder;
|
98
90
|
}
|
99
91
|
|
100
92
|
/**
|
101
|
-
|
102
|
-
|
103
|
-
|
93
|
+
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
|
94
|
+
2. Correct the odd 'em' font sizing in all browsers.
|
95
|
+
*/
|
104
96
|
|
105
97
|
code,
|
106
98
|
kbd,
|
107
|
-
samp
|
108
|
-
|
109
|
-
|
99
|
+
samp,
|
100
|
+
pre {
|
101
|
+
font-family:
|
102
|
+
ui-monospace,
|
103
|
+
SFMono-Regular,
|
104
|
+
Consolas,
|
105
|
+
'Liberation Mono',
|
106
|
+
Menlo,
|
107
|
+
monospace; /* 1 */
|
108
|
+
font-size: 1em; /* 2 */
|
110
109
|
}
|
111
110
|
|
112
111
|
/**
|
113
|
-
|
114
|
-
|
112
|
+
Add the correct font size in all browsers.
|
113
|
+
*/
|
115
114
|
|
116
115
|
small {
|
117
|
-
|
116
|
+
font-size: 80%;
|
118
117
|
}
|
119
118
|
|
120
119
|
/**
|
121
|
-
|
122
|
-
|
123
|
-
*/
|
120
|
+
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
|
121
|
+
*/
|
124
122
|
|
125
123
|
sub,
|
126
124
|
sup {
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
125
|
+
font-size: 75%;
|
126
|
+
line-height: 0;
|
127
|
+
position: relative;
|
128
|
+
vertical-align: baseline;
|
131
129
|
}
|
132
130
|
|
133
131
|
sub {
|
134
|
-
|
132
|
+
bottom: -0.25em;
|
135
133
|
}
|
136
134
|
|
137
135
|
sup {
|
138
|
-
|
136
|
+
top: -0.5em;
|
139
137
|
}
|
140
138
|
|
141
|
-
/*
|
142
|
-
|
139
|
+
/*
|
140
|
+
Tabular data
|
141
|
+
============
|
142
|
+
*/
|
143
143
|
|
144
144
|
/**
|
145
|
-
|
146
|
-
|
145
|
+
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
|
146
|
+
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
147
|
+
*/
|
147
148
|
|
148
|
-
|
149
|
-
|
149
|
+
table {
|
150
|
+
text-indent: 0; /* 1 */
|
151
|
+
border-color: inherit; /* 2 */
|
150
152
|
}
|
151
153
|
|
152
|
-
/*
|
153
|
-
|
154
|
+
/*
|
155
|
+
Forms
|
156
|
+
=====
|
157
|
+
*/
|
154
158
|
|
155
159
|
/**
|
156
|
-
|
157
|
-
|
158
|
-
|
160
|
+
1. Change the font styles in all browsers.
|
161
|
+
2. Remove the margin in Firefox and Safari.
|
162
|
+
*/
|
159
163
|
|
160
164
|
button,
|
161
165
|
input,
|
162
166
|
optgroup,
|
163
167
|
select,
|
164
168
|
textarea {
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
+
font-family: inherit; /* 1 */
|
170
|
+
font-size: 100%; /* 1 */
|
171
|
+
line-height: 1.15; /* 1 */
|
172
|
+
margin: 0; /* 2 */
|
169
173
|
}
|
170
174
|
|
171
175
|
/**
|
172
|
-
|
173
|
-
|
174
|
-
*/
|
176
|
+
Remove the inheritance of text transform in Edge and Firefox.
|
177
|
+
*/
|
175
178
|
|
176
179
|
button,
|
177
|
-
|
178
|
-
|
180
|
+
select {
|
181
|
+
text-transform: none;
|
179
182
|
}
|
180
183
|
|
181
184
|
/**
|
182
|
-
|
183
|
-
|
184
|
-
*/
|
185
|
+
Correct the inability to style clickable types in iOS and Safari.
|
186
|
+
*/
|
185
187
|
|
186
188
|
button,
|
187
|
-
|
188
|
-
|
189
|
+
[type='button'],
|
190
|
+
[type='reset'],
|
191
|
+
[type='submit'] {
|
192
|
+
-webkit-appearance: button;
|
189
193
|
}
|
190
194
|
|
191
195
|
/**
|
192
|
-
|
193
|
-
|
196
|
+
Remove the inner border and padding in Firefox.
|
197
|
+
*/
|
194
198
|
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
[type="submit"] {
|
199
|
-
-webkit-appearance: button;
|
199
|
+
::-moz-focus-inner {
|
200
|
+
border-style: none;
|
201
|
+
padding: 0;
|
200
202
|
}
|
201
203
|
|
202
204
|
/**
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
button::-moz-focus-inner,
|
207
|
-
[type="button"]::-moz-focus-inner,
|
208
|
-
[type="reset"]::-moz-focus-inner,
|
209
|
-
[type="submit"]::-moz-focus-inner {
|
210
|
-
border-style: none;
|
211
|
-
padding: 0;
|
212
|
-
}
|
205
|
+
Restore the focus styles unset by the previous rule.
|
206
|
+
*/
|
213
207
|
|
214
|
-
|
215
|
-
|
216
|
-
*/
|
217
|
-
|
218
|
-
button:-moz-focusring,
|
219
|
-
[type="button"]:-moz-focusring,
|
220
|
-
[type="reset"]:-moz-focusring,
|
221
|
-
[type="submit"]:-moz-focusring {
|
222
|
-
outline: 1px dotted ButtonText;
|
208
|
+
:-moz-focusring {
|
209
|
+
outline: 1px dotted ButtonText;
|
223
210
|
}
|
224
211
|
|
225
212
|
/**
|
226
|
-
|
227
|
-
|
213
|
+
Remove the additional ':invalid' styles in Firefox.
|
214
|
+
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
|
215
|
+
*/
|
228
216
|
|
229
|
-
|
230
|
-
|
217
|
+
:-moz-ui-invalid {
|
218
|
+
box-shadow: none;
|
231
219
|
}
|
232
220
|
|
233
221
|
/**
|
234
|
-
|
235
|
-
|
236
|
-
* 3. Remove the padding so developers are not caught out when they zero out
|
237
|
-
* `fieldset` elements in all browsers.
|
238
|
-
*/
|
222
|
+
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
|
223
|
+
*/
|
239
224
|
|
240
225
|
legend {
|
241
|
-
|
242
|
-
color: inherit; /* 2 */
|
243
|
-
display: table; /* 1 */
|
244
|
-
max-width: 100%; /* 1 */
|
245
|
-
padding: 0; /* 3 */
|
246
|
-
white-space: normal; /* 1 */
|
226
|
+
padding: 0;
|
247
227
|
}
|
248
228
|
|
249
229
|
/**
|
250
|
-
|
251
|
-
|
230
|
+
Add the correct vertical alignment in Chrome and Firefox.
|
231
|
+
*/
|
252
232
|
|
253
233
|
progress {
|
254
|
-
|
255
|
-
}
|
256
|
-
|
257
|
-
/**
|
258
|
-
* Remove the default vertical scrollbar in IE 10+.
|
259
|
-
*/
|
260
|
-
|
261
|
-
textarea {
|
262
|
-
overflow: auto;
|
263
|
-
}
|
264
|
-
|
265
|
-
/**
|
266
|
-
* 1. Add the correct box sizing in IE 10.
|
267
|
-
* 2. Remove the padding in IE 10.
|
268
|
-
*/
|
269
|
-
|
270
|
-
[type="checkbox"],
|
271
|
-
[type="radio"] {
|
272
|
-
box-sizing: border-box; /* 1 */
|
273
|
-
padding: 0; /* 2 */
|
234
|
+
vertical-align: baseline;
|
274
235
|
}
|
275
236
|
|
276
237
|
/**
|
277
|
-
|
278
|
-
|
238
|
+
Correct the cursor style of increment and decrement buttons in Safari.
|
239
|
+
*/
|
279
240
|
|
280
|
-
|
281
|
-
|
282
|
-
|
241
|
+
::-webkit-inner-spin-button,
|
242
|
+
::-webkit-outer-spin-button {
|
243
|
+
height: auto;
|
283
244
|
}
|
284
245
|
|
285
246
|
/**
|
286
|
-
|
287
|
-
|
288
|
-
|
247
|
+
1. Correct the odd appearance in Chrome and Safari.
|
248
|
+
2. Correct the outline style in Safari.
|
249
|
+
*/
|
289
250
|
|
290
|
-
[type=
|
291
|
-
|
292
|
-
|
251
|
+
[type='search'] {
|
252
|
+
-webkit-appearance: textfield; /* 1 */
|
253
|
+
outline-offset: -2px; /* 2 */
|
293
254
|
}
|
294
255
|
|
295
256
|
/**
|
296
|
-
|
297
|
-
|
257
|
+
Remove the inner padding in Chrome and Safari on macOS.
|
258
|
+
*/
|
298
259
|
|
299
|
-
|
300
|
-
|
260
|
+
::-webkit-search-decoration {
|
261
|
+
-webkit-appearance: none;
|
301
262
|
}
|
302
263
|
|
303
264
|
/**
|
304
|
-
|
305
|
-
|
306
|
-
|
265
|
+
1. Correct the inability to style clickable types in iOS and Safari.
|
266
|
+
2. Change font properties to 'inherit' in Safari.
|
267
|
+
*/
|
307
268
|
|
308
269
|
::-webkit-file-upload-button {
|
309
|
-
|
310
|
-
|
270
|
+
-webkit-appearance: button; /* 1 */
|
271
|
+
font: inherit; /* 2 */
|
311
272
|
}
|
312
273
|
|
313
|
-
/* Interactive
|
314
|
-
========================================================================== */
|
315
|
-
|
316
274
|
/*
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
details {
|
321
|
-
display: block;
|
322
|
-
}
|
275
|
+
Interactive
|
276
|
+
===========
|
277
|
+
*/
|
323
278
|
|
324
279
|
/*
|
325
|
-
|
326
|
-
|
280
|
+
Add the correct display in Chrome and Safari.
|
281
|
+
*/
|
327
282
|
|
328
283
|
summary {
|
329
|
-
|
330
|
-
}
|
331
|
-
|
332
|
-
/* Misc
|
333
|
-
========================================================================== */
|
334
|
-
|
335
|
-
/**
|
336
|
-
* Add the correct display in IE 10+.
|
337
|
-
*/
|
338
|
-
|
339
|
-
template {
|
340
|
-
display: none;
|
341
|
-
}
|
342
|
-
|
343
|
-
/**
|
344
|
-
* Add the correct display in IE 10.
|
345
|
-
*/
|
346
|
-
|
347
|
-
[hidden] {
|
348
|
-
display: none;
|
284
|
+
display: list-item;
|
349
285
|
}
|