GIPainter-base 0.5.1 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/assets/stylesheets/Base/_typography.scss +346 -346
- data/assets/stylesheets/Functions/_typography.scss +38 -38
- data/assets/stylesheets/Mixins/_colors.scss +53 -53
- data/assets/stylesheets/Mixins/_image.scss +53 -53
- data/assets/stylesheets/Mixins/_list.scss +69 -69
- data/assets/stylesheets/Mixins/_margin.scss +45 -45
- data/assets/stylesheets/Mixins/_media-query.scss +48 -48
- data/assets/stylesheets/Mixins/_miscellaneous.scss +41 -41
- data/assets/stylesheets/Mixins/_opacity.scss +26 -26
- data/assets/stylesheets/Mixins/_padding.scss +29 -29
- data/assets/stylesheets/Mixins/_position.scss +107 -107
- data/assets/stylesheets/Mixins/_pseudo.scss +108 -108
- data/assets/stylesheets/Mixins/_size.scss +72 -72
- data/assets/stylesheets/Mixins/_typography.scss +375 -370
- data/assets/stylesheets/Variables/_colors.scss +79 -70
- data/assets/stylesheets/Variables/_media-query.scss +27 -20
- data/assets/stylesheets/Variables/_typography.scss +69 -69
- data/assets/stylesheets/Variables/_weight.scss +21 -21
- data/assets/stylesheets/_GIPainter-base.scss +18 -18
- data/lib/GIPainter-base/version.rb +2 -2
- data/templates/project/manifest.rb +6 -6
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: adc56dda2f69a9c138542b6f72f36e18e13bf277
|
4
|
+
data.tar.gz: c852a86466789a1bd3cdc2bdfaab590e01e07eec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3dc2392c2b7986a1ee6bb3454f687819ec05e7391fddcafe8a70f8d3b6cf7b661eeda00a071701173fe89d5942fa50e74076ef169ce85865842b6ca88dbae9ba
|
7
|
+
data.tar.gz: c57cefd482020a38ce4aa19486ee3f0299af8832297e05394e005a1239cf2a893bd917ab335040595952cbd097a911faa88b116f826167465d14610b6602cef8
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# GIPainter::Base
|
2
2
|
|
3
|
-
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/GIPainter
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/GIPainter-base`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
4
|
|
5
5
|
TODO: Delete this and the text above, and describe your gem
|
6
6
|
|
@@ -1,347 +1,347 @@
|
|
1
|
-
*, ::after, ::before {
|
2
|
-
@include box-sizing(border-box);
|
3
|
-
}
|
4
|
-
|
5
|
-
html {
|
6
|
-
font-family: $font-family-sans-serif;
|
7
|
-
-ms-text-size-adjust: 100%;
|
8
|
-
-webkit-text-size-adjust: 100%;
|
9
|
-
}
|
10
|
-
|
11
|
-
body {
|
12
|
-
margin: 0;
|
13
|
-
}
|
14
|
-
|
15
|
-
article,
|
16
|
-
aside,
|
17
|
-
details,
|
18
|
-
figcaption,
|
19
|
-
figure,
|
20
|
-
footer,
|
21
|
-
header,
|
22
|
-
hgroup,
|
23
|
-
main,
|
24
|
-
menu,
|
25
|
-
nav,
|
26
|
-
section,
|
27
|
-
summary {
|
28
|
-
display: block;
|
29
|
-
}
|
30
|
-
|
31
|
-
audio,
|
32
|
-
canvas,
|
33
|
-
progress,
|
34
|
-
video {
|
35
|
-
display: inline-block;
|
36
|
-
vertical-align: baseline;
|
37
|
-
}
|
38
|
-
|
39
|
-
audio:not([controls]) {
|
40
|
-
display: none;
|
41
|
-
height: 0;
|
42
|
-
}
|
43
|
-
|
44
|
-
[hidden],
|
45
|
-
template {
|
46
|
-
display: none;
|
47
|
-
}
|
48
|
-
|
49
|
-
h1,
|
50
|
-
h2,
|
51
|
-
h3,
|
52
|
-
h4,
|
53
|
-
h5,
|
54
|
-
h6 {
|
55
|
-
font-family: $headings-font-family;
|
56
|
-
font-weight: $headings-font-weight;
|
57
|
-
line-height: $headings-line-height;
|
58
|
-
color: $headings-color;
|
59
|
-
|
60
|
-
small {
|
61
|
-
font-weight: normal;
|
62
|
-
line-height: 1;
|
63
|
-
color: $headings-small-color;
|
64
|
-
}
|
65
|
-
}
|
66
|
-
|
67
|
-
h1,
|
68
|
-
h2,
|
69
|
-
h3 {
|
70
|
-
margin-top: $line-height-computed;
|
71
|
-
margin-bottom: ($line-height-computed / 2);
|
72
|
-
|
73
|
-
small {
|
74
|
-
font-size: 0.65em;
|
75
|
-
}
|
76
|
-
}
|
77
|
-
|
78
|
-
h4,
|
79
|
-
h5,
|
80
|
-
h6 {
|
81
|
-
margin-top: ($line-height-computed / 2);
|
82
|
-
margin-bottom: ($line-height-computed / 2);
|
83
|
-
|
84
|
-
small {
|
85
|
-
font-size: 0.75em;
|
86
|
-
}
|
87
|
-
}
|
88
|
-
|
89
|
-
h1 {
|
90
|
-
@include font-size($font-size-h1);
|
91
|
-
}
|
92
|
-
|
93
|
-
h2 {
|
94
|
-
@include font-size($font-size-h2);
|
95
|
-
}
|
96
|
-
|
97
|
-
h3 {
|
98
|
-
@include font-size($font-size-h3);
|
99
|
-
}
|
100
|
-
|
101
|
-
h4 {
|
102
|
-
@include font-size($font-size-h4);
|
103
|
-
}
|
104
|
-
|
105
|
-
h5 {
|
106
|
-
@include font-size($font-size-h5);
|
107
|
-
}
|
108
|
-
|
109
|
-
h6 {
|
110
|
-
@include font-size($font-size-h6);
|
111
|
-
}
|
112
|
-
|
113
|
-
p {
|
114
|
-
margin: 0 0 ($line-height-computed / 2);
|
115
|
-
}
|
116
|
-
|
117
|
-
a {
|
118
|
-
text-decoration: none;
|
119
|
-
color: $link-color;
|
120
|
-
background-color: transparent;
|
121
|
-
@include transition(color 0.5s ease-in-out);
|
122
|
-
|
123
|
-
&:hover,
|
124
|
-
&:focus {
|
125
|
-
color: darken($link-color, 20%);
|
126
|
-
}
|
127
|
-
|
128
|
-
&:visited {
|
129
|
-
color: darken($link-color, 20%);
|
130
|
-
}
|
131
|
-
|
132
|
-
&:active,
|
133
|
-
&:hover,
|
134
|
-
&:focus {
|
135
|
-
outline: 0;
|
136
|
-
}
|
137
|
-
}
|
138
|
-
|
139
|
-
small {
|
140
|
-
font-size: floor((100% * $font-size-small / $font-size-base));
|
141
|
-
}
|
142
|
-
|
143
|
-
mark{
|
144
|
-
background-color: $brand-warning;
|
145
|
-
padding: .2em;
|
146
|
-
}
|
147
|
-
|
148
|
-
hr{
|
149
|
-
clear: both;
|
150
|
-
margin: 0;
|
151
|
-
border: 0;
|
152
|
-
height: 2px;
|
153
|
-
background: $gray;
|
154
|
-
@include box-sizing(content-box);
|
155
|
-
}
|
156
|
-
|
157
|
-
sub,
|
158
|
-
sup {
|
159
|
-
font-size: 75%;
|
160
|
-
line-height: 0;
|
161
|
-
position: relative;
|
162
|
-
vertical-align: baseline;
|
163
|
-
}
|
164
|
-
|
165
|
-
sup {
|
166
|
-
top: -0.5em;
|
167
|
-
}
|
168
|
-
|
169
|
-
sub {
|
170
|
-
bottom: -0.25em;
|
171
|
-
}
|
172
|
-
|
173
|
-
strong,
|
174
|
-
b{
|
175
|
-
font-family: inherit;
|
176
|
-
font-weight: bold;
|
177
|
-
}
|
178
|
-
|
179
|
-
em,
|
180
|
-
i{
|
181
|
-
font-style: italic;
|
182
|
-
}
|
183
|
-
|
184
|
-
dfn {
|
185
|
-
font-style: italic;
|
186
|
-
}
|
187
|
-
|
188
|
-
abbr[title],
|
189
|
-
abbr[data-original-title] {
|
190
|
-
cursor: help;
|
191
|
-
border-bottom: 1px dotted $gray;
|
192
|
-
}
|
193
|
-
|
194
|
-
del,
|
195
|
-
s{
|
196
|
-
text-decoration: line-through;
|
197
|
-
}
|
198
|
-
|
199
|
-
ins,
|
200
|
-
u{
|
201
|
-
text-decoration: underline;
|
202
|
-
}
|
203
|
-
|
204
|
-
pre {
|
205
|
-
overflow: auto;
|
206
|
-
}
|
207
|
-
|
208
|
-
code,
|
209
|
-
kbd,
|
210
|
-
pre,
|
211
|
-
samp {
|
212
|
-
font-family: $font-family-monospace;
|
213
|
-
font-size: 1em;
|
214
|
-
}
|
215
|
-
|
216
|
-
blockquote,
|
217
|
-
q {
|
218
|
-
padding: ($line-height-computed / 2) $line-height-computed;
|
219
|
-
margin: 0 0 $line-height-computed;
|
220
|
-
@include font-size($font-size-base * 1.25);
|
221
|
-
border-left: 5px solid $gray-light;
|
222
|
-
|
223
|
-
p,
|
224
|
-
ul,
|
225
|
-
ol {
|
226
|
-
&:last-child {
|
227
|
-
margin-bottom: 0;
|
228
|
-
}
|
229
|
-
}
|
230
|
-
|
231
|
-
footer,
|
232
|
-
small {
|
233
|
-
display: block;
|
234
|
-
font-size: 80%;
|
235
|
-
line-height: $line-height-base;
|
236
|
-
color: $gray;
|
237
|
-
|
238
|
-
&:before {
|
239
|
-
content: '\2014 \00A0';
|
240
|
-
}
|
241
|
-
}
|
242
|
-
}
|
243
|
-
|
244
|
-
figure {
|
245
|
-
margin: 1em 40px;
|
246
|
-
}
|
247
|
-
|
248
|
-
img {
|
249
|
-
border: 0;
|
250
|
-
@include image-responsive;
|
251
|
-
}
|
252
|
-
|
253
|
-
svg:not(:root) {
|
254
|
-
overflow: hidden;
|
255
|
-
}
|
256
|
-
|
257
|
-
button,
|
258
|
-
input,
|
259
|
-
optgroup,
|
260
|
-
select,
|
261
|
-
textarea {
|
262
|
-
color: inherit;
|
263
|
-
font: inherit;
|
264
|
-
margin: 0;
|
265
|
-
}
|
266
|
-
|
267
|
-
button {
|
268
|
-
overflow: visible;
|
269
|
-
}
|
270
|
-
|
271
|
-
button,
|
272
|
-
select {
|
273
|
-
text-transform: none;
|
274
|
-
}
|
275
|
-
|
276
|
-
button,
|
277
|
-
html input[type="button"],
|
278
|
-
input[type="reset"],
|
279
|
-
input[type="submit"] {
|
280
|
-
@include appearance(button);
|
281
|
-
cursor: pointer;
|
282
|
-
}
|
283
|
-
|
284
|
-
button[disabled],
|
285
|
-
html input[disabled] {
|
286
|
-
cursor: default;
|
287
|
-
}
|
288
|
-
|
289
|
-
button::-moz-focus-inner,
|
290
|
-
input::-moz-focus-inner {
|
291
|
-
border: 0;
|
292
|
-
padding: 0;
|
293
|
-
}
|
294
|
-
|
295
|
-
input {
|
296
|
-
line-height: normal;
|
297
|
-
}
|
298
|
-
|
299
|
-
input[type="checkbox"],
|
300
|
-
input[type="radio"] {
|
301
|
-
@include box-sizing(border-box);
|
302
|
-
padding: 0;
|
303
|
-
}
|
304
|
-
|
305
|
-
input[type="number"]::-webkit-inner-spin-button,
|
306
|
-
input[type="number"]::-webkit-outer-spin-button {
|
307
|
-
height: auto;
|
308
|
-
}
|
309
|
-
|
310
|
-
input[type="search"] {
|
311
|
-
@include appearance(textfield);
|
312
|
-
@include box-sizing(content-box);
|
313
|
-
}
|
314
|
-
|
315
|
-
input[type="search"]::-webkit-search-cancel-button,
|
316
|
-
input[type="search"]::-webkit-search-decoration {
|
317
|
-
@include appearance(none);
|
318
|
-
}
|
319
|
-
|
320
|
-
fieldset {
|
321
|
-
border: 1px solid #c0c0c0;
|
322
|
-
margin: 0 2px;
|
323
|
-
padding: 0.35em 0.625em 0.75em;
|
324
|
-
}
|
325
|
-
|
326
|
-
legend {
|
327
|
-
border: 0;
|
328
|
-
padding: 0;
|
329
|
-
}
|
330
|
-
|
331
|
-
textarea {
|
332
|
-
overflow: auto;
|
333
|
-
}
|
334
|
-
|
335
|
-
optgroup {
|
336
|
-
font-weight: bold;
|
337
|
-
}
|
338
|
-
|
339
|
-
table {
|
340
|
-
border-collapse: collapse;
|
341
|
-
border-spacing: 0;
|
342
|
-
}
|
343
|
-
|
344
|
-
td,
|
345
|
-
th {
|
346
|
-
padding: 0;
|
1
|
+
*, ::after, ::before {
|
2
|
+
@include box-sizing(border-box);
|
3
|
+
}
|
4
|
+
|
5
|
+
html {
|
6
|
+
font-family: $font-family-sans-serif;
|
7
|
+
-ms-text-size-adjust: 100%;
|
8
|
+
-webkit-text-size-adjust: 100%;
|
9
|
+
}
|
10
|
+
|
11
|
+
body {
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
article,
|
16
|
+
aside,
|
17
|
+
details,
|
18
|
+
figcaption,
|
19
|
+
figure,
|
20
|
+
footer,
|
21
|
+
header,
|
22
|
+
hgroup,
|
23
|
+
main,
|
24
|
+
menu,
|
25
|
+
nav,
|
26
|
+
section,
|
27
|
+
summary {
|
28
|
+
display: block;
|
29
|
+
}
|
30
|
+
|
31
|
+
audio,
|
32
|
+
canvas,
|
33
|
+
progress,
|
34
|
+
video {
|
35
|
+
display: inline-block;
|
36
|
+
vertical-align: baseline;
|
37
|
+
}
|
38
|
+
|
39
|
+
audio:not([controls]) {
|
40
|
+
display: none;
|
41
|
+
height: 0;
|
42
|
+
}
|
43
|
+
|
44
|
+
[hidden],
|
45
|
+
template {
|
46
|
+
display: none;
|
47
|
+
}
|
48
|
+
|
49
|
+
h1,
|
50
|
+
h2,
|
51
|
+
h3,
|
52
|
+
h4,
|
53
|
+
h5,
|
54
|
+
h6 {
|
55
|
+
font-family: $headings-font-family;
|
56
|
+
font-weight: $headings-font-weight;
|
57
|
+
line-height: $headings-line-height;
|
58
|
+
color: $headings-color;
|
59
|
+
|
60
|
+
small {
|
61
|
+
font-weight: normal;
|
62
|
+
line-height: 1;
|
63
|
+
color: $headings-small-color;
|
64
|
+
}
|
65
|
+
}
|
66
|
+
|
67
|
+
h1,
|
68
|
+
h2,
|
69
|
+
h3 {
|
70
|
+
margin-top: $line-height-computed;
|
71
|
+
margin-bottom: ($line-height-computed / 2);
|
72
|
+
|
73
|
+
small {
|
74
|
+
font-size: 0.65em;
|
75
|
+
}
|
76
|
+
}
|
77
|
+
|
78
|
+
h4,
|
79
|
+
h5,
|
80
|
+
h6 {
|
81
|
+
margin-top: ($line-height-computed / 2);
|
82
|
+
margin-bottom: ($line-height-computed / 2);
|
83
|
+
|
84
|
+
small {
|
85
|
+
font-size: 0.75em;
|
86
|
+
}
|
87
|
+
}
|
88
|
+
|
89
|
+
h1 {
|
90
|
+
@include font-size($font-size-h1);
|
91
|
+
}
|
92
|
+
|
93
|
+
h2 {
|
94
|
+
@include font-size($font-size-h2);
|
95
|
+
}
|
96
|
+
|
97
|
+
h3 {
|
98
|
+
@include font-size($font-size-h3);
|
99
|
+
}
|
100
|
+
|
101
|
+
h4 {
|
102
|
+
@include font-size($font-size-h4);
|
103
|
+
}
|
104
|
+
|
105
|
+
h5 {
|
106
|
+
@include font-size($font-size-h5);
|
107
|
+
}
|
108
|
+
|
109
|
+
h6 {
|
110
|
+
@include font-size($font-size-h6);
|
111
|
+
}
|
112
|
+
|
113
|
+
p {
|
114
|
+
margin: 0 0 ($line-height-computed / 2);
|
115
|
+
}
|
116
|
+
|
117
|
+
a {
|
118
|
+
text-decoration: none;
|
119
|
+
color: $link-color;
|
120
|
+
background-color: transparent;
|
121
|
+
@include transition(color 0.5s ease-in-out);
|
122
|
+
|
123
|
+
&:hover,
|
124
|
+
&:focus {
|
125
|
+
color: darken($link-color, 20%);
|
126
|
+
}
|
127
|
+
|
128
|
+
&:visited {
|
129
|
+
color: darken($link-color, 20%);
|
130
|
+
}
|
131
|
+
|
132
|
+
&:active,
|
133
|
+
&:hover,
|
134
|
+
&:focus {
|
135
|
+
outline: 0;
|
136
|
+
}
|
137
|
+
}
|
138
|
+
|
139
|
+
small {
|
140
|
+
font-size: floor((100% * $font-size-small / $font-size-base));
|
141
|
+
}
|
142
|
+
|
143
|
+
mark{
|
144
|
+
background-color: $brand-warning;
|
145
|
+
padding: .2em;
|
146
|
+
}
|
147
|
+
|
148
|
+
hr{
|
149
|
+
clear: both;
|
150
|
+
margin: 0;
|
151
|
+
border: 0;
|
152
|
+
height: 2px;
|
153
|
+
background: $gray;
|
154
|
+
@include box-sizing(content-box);
|
155
|
+
}
|
156
|
+
|
157
|
+
sub,
|
158
|
+
sup {
|
159
|
+
font-size: 75%;
|
160
|
+
line-height: 0;
|
161
|
+
position: relative;
|
162
|
+
vertical-align: baseline;
|
163
|
+
}
|
164
|
+
|
165
|
+
sup {
|
166
|
+
top: -0.5em;
|
167
|
+
}
|
168
|
+
|
169
|
+
sub {
|
170
|
+
bottom: -0.25em;
|
171
|
+
}
|
172
|
+
|
173
|
+
strong,
|
174
|
+
b{
|
175
|
+
font-family: inherit;
|
176
|
+
font-weight: bold;
|
177
|
+
}
|
178
|
+
|
179
|
+
em,
|
180
|
+
i{
|
181
|
+
font-style: italic;
|
182
|
+
}
|
183
|
+
|
184
|
+
dfn {
|
185
|
+
font-style: italic;
|
186
|
+
}
|
187
|
+
|
188
|
+
abbr[title],
|
189
|
+
abbr[data-original-title] {
|
190
|
+
cursor: help;
|
191
|
+
border-bottom: 1px dotted $gray;
|
192
|
+
}
|
193
|
+
|
194
|
+
del,
|
195
|
+
s{
|
196
|
+
text-decoration: line-through;
|
197
|
+
}
|
198
|
+
|
199
|
+
ins,
|
200
|
+
u{
|
201
|
+
text-decoration: underline;
|
202
|
+
}
|
203
|
+
|
204
|
+
pre {
|
205
|
+
overflow: auto;
|
206
|
+
}
|
207
|
+
|
208
|
+
code,
|
209
|
+
kbd,
|
210
|
+
pre,
|
211
|
+
samp {
|
212
|
+
font-family: $font-family-monospace;
|
213
|
+
font-size: 1em;
|
214
|
+
}
|
215
|
+
|
216
|
+
blockquote,
|
217
|
+
q {
|
218
|
+
padding: ($line-height-computed / 2) $line-height-computed;
|
219
|
+
margin: 0 0 $line-height-computed;
|
220
|
+
@include font-size($font-size-base * 1.25);
|
221
|
+
border-left: 5px solid $gray-light;
|
222
|
+
|
223
|
+
p,
|
224
|
+
ul,
|
225
|
+
ol {
|
226
|
+
&:last-child {
|
227
|
+
margin-bottom: 0;
|
228
|
+
}
|
229
|
+
}
|
230
|
+
|
231
|
+
footer,
|
232
|
+
small {
|
233
|
+
display: block;
|
234
|
+
font-size: 80%;
|
235
|
+
line-height: $line-height-base;
|
236
|
+
color: $gray;
|
237
|
+
|
238
|
+
&:before {
|
239
|
+
content: '\2014 \00A0';
|
240
|
+
}
|
241
|
+
}
|
242
|
+
}
|
243
|
+
|
244
|
+
figure {
|
245
|
+
margin: 1em 40px;
|
246
|
+
}
|
247
|
+
|
248
|
+
img {
|
249
|
+
border: 0;
|
250
|
+
@include image-responsive;
|
251
|
+
}
|
252
|
+
|
253
|
+
svg:not(:root) {
|
254
|
+
overflow: hidden;
|
255
|
+
}
|
256
|
+
|
257
|
+
button,
|
258
|
+
input,
|
259
|
+
optgroup,
|
260
|
+
select,
|
261
|
+
textarea {
|
262
|
+
color: inherit;
|
263
|
+
font: inherit;
|
264
|
+
margin: 0;
|
265
|
+
}
|
266
|
+
|
267
|
+
button {
|
268
|
+
overflow: visible;
|
269
|
+
}
|
270
|
+
|
271
|
+
button,
|
272
|
+
select {
|
273
|
+
text-transform: none;
|
274
|
+
}
|
275
|
+
|
276
|
+
button,
|
277
|
+
html input[type="button"],
|
278
|
+
input[type="reset"],
|
279
|
+
input[type="submit"] {
|
280
|
+
@include appearance(button);
|
281
|
+
cursor: pointer;
|
282
|
+
}
|
283
|
+
|
284
|
+
button[disabled],
|
285
|
+
html input[disabled] {
|
286
|
+
cursor: default;
|
287
|
+
}
|
288
|
+
|
289
|
+
button::-moz-focus-inner,
|
290
|
+
input::-moz-focus-inner {
|
291
|
+
border: 0;
|
292
|
+
padding: 0;
|
293
|
+
}
|
294
|
+
|
295
|
+
input {
|
296
|
+
line-height: normal;
|
297
|
+
}
|
298
|
+
|
299
|
+
input[type="checkbox"],
|
300
|
+
input[type="radio"] {
|
301
|
+
@include box-sizing(border-box);
|
302
|
+
padding: 0;
|
303
|
+
}
|
304
|
+
|
305
|
+
input[type="number"]::-webkit-inner-spin-button,
|
306
|
+
input[type="number"]::-webkit-outer-spin-button {
|
307
|
+
height: auto;
|
308
|
+
}
|
309
|
+
|
310
|
+
input[type="search"] {
|
311
|
+
@include appearance(textfield);
|
312
|
+
@include box-sizing(content-box);
|
313
|
+
}
|
314
|
+
|
315
|
+
input[type="search"]::-webkit-search-cancel-button,
|
316
|
+
input[type="search"]::-webkit-search-decoration {
|
317
|
+
@include appearance(none);
|
318
|
+
}
|
319
|
+
|
320
|
+
fieldset {
|
321
|
+
border: 1px solid #c0c0c0;
|
322
|
+
margin: 0 2px;
|
323
|
+
padding: 0.35em 0.625em 0.75em;
|
324
|
+
}
|
325
|
+
|
326
|
+
legend {
|
327
|
+
border: 0;
|
328
|
+
padding: 0;
|
329
|
+
}
|
330
|
+
|
331
|
+
textarea {
|
332
|
+
overflow: auto;
|
333
|
+
}
|
334
|
+
|
335
|
+
optgroup {
|
336
|
+
font-weight: bold;
|
337
|
+
}
|
338
|
+
|
339
|
+
table {
|
340
|
+
border-collapse: collapse;
|
341
|
+
border-spacing: 0;
|
342
|
+
}
|
343
|
+
|
344
|
+
td,
|
345
|
+
th {
|
346
|
+
padding: 0;
|
347
347
|
}
|