illusion 1.1.0 → 2.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8ca138b02ca7756fbb471713a4aab7b9b5a8aeb3
4
- data.tar.gz: 82be92c2dc1c91eeb4709e966155812405afa989
3
+ metadata.gz: cca82603eaa91891f551258fac1dc87371750e78
4
+ data.tar.gz: f8451921806f3364d7599440aca4bf4064077651
5
5
  SHA512:
6
- metadata.gz: 87e54e2bcb7cdf7aeb02268aa4b48df121edebe2ecea6fa12d5b3a48f7dc18c226dd8e40958ccaeb57691ae31c85b674be103e9d6ce26d419c1b07dfc4ea7d49
7
- data.tar.gz: 9779c526baf7daab793832190bebe91afef488a27839d712704efca88f1292cd68dbb95290226dc95b9da40fa1020d72c1363b9fea60079cdfbf80282ec00182
6
+ metadata.gz: f2c1edd093916c3feaf59a9bbab38167183fff866b5c7dfa5ee9bb9ea6b5ab23f5efb9cfe06f4347b19f77bf7817d9623cf968bfbbb931b13559785b586f52d2
7
+ data.tar.gz: fbb8222884a0599d0ee38f78b06bff473465e473afcee28be25371115e0408c20082ab0d8e0abdcc0989b592a369b8e6a308761c37615a0cbfffdb7bf2771a3f
data/sass/_illusion.scss CHANGED
@@ -1,3 +1,11 @@
1
- @import "illusion/basics";
2
- @import "illusion/reset";
3
- @import "illusion/ie";
1
+ @import "illusion/mixins/basics";
2
+ @import "illusion/mixins/breakpoint";
3
+
4
+ @import "illusion/placeholders/placeholders";
5
+
6
+ @import "illusion/setup/boxsizing";
7
+
8
+ @import "illusion/variables/variables";
9
+
10
+ @import "illusion/vendor/normalize";
11
+ @import "illusion/vendor/responsivemenu";
@@ -1,12 +1,21 @@
1
+ /**
2
+ * Mixin for setting columns with vendor prefixes
3
+ *
4
+ * @param {number} $count - The amount of columns
5
+ *
6
+ * @group Basics
7
+ */
1
8
  @mixin column-count($count) {
2
9
  -webkit-column-count: $count;
3
10
  -moz-column-count: $count;
4
11
  column-count: $count;
5
12
  }
6
13
 
7
- // Clearfix
8
- // --------
9
- // For clearing floats like a boss h5bp.com/q
14
+ /**
15
+ * Mixin for setting clearfix to an element
16
+ *
17
+ * @group Basics
18
+ */
10
19
  @mixin clearfix {
11
20
  *zoom: 1;
12
21
  &:before,
@@ -22,15 +31,21 @@
22
31
  }
23
32
  }
24
33
 
25
- // IE7 inline-block
26
- // ----------------
34
+ /**
35
+ * Hacky CSS to set inline-block and zoom to IE7
36
+ *
37
+ * @group Basics
38
+ */
27
39
  @mixin ie7-inline-block() {
28
- *display: inline; /* IE7 inline-block hack */
40
+ *display: inline;
29
41
  *zoom: 1;
30
42
  }
31
43
 
32
- // Webkit-style focus
33
- // ------------------
44
+ /**
45
+ * Set outlines for focus on an element
46
+ *
47
+ * @group Basics
48
+ */
34
49
  @mixin tab-focus() {
35
50
  // Default
36
51
  outline: thin dotted #333;
@@ -39,28 +54,52 @@
39
54
  outline-offset: -2px;
40
55
  }
41
56
 
42
- // Border Radius
57
+ /**
58
+ * Set border-radius to element including vendor prefixes
59
+ *
60
+ * @param {string} $radius - desired border-radius (shorthand)
61
+ *
62
+ * @group Basics
63
+ */
43
64
  @mixin border-radius($radius) {
44
65
  -webkit-border-radius: $radius;
45
66
  -moz-border-radius: $radius;
46
67
  border-radius: $radius;
47
68
  }
48
69
 
49
- // Box sizing
70
+ /**
71
+ * Set box-sizing to element including vendor prefixes
72
+ *
73
+ * @param {string} $boxmodel - desired box-model (shorthand)
74
+ *
75
+ * @group Basics
76
+ */
50
77
  @mixin box-sizing($boxmodel) {
51
78
  -webkit-box-sizing: $boxmodel;
52
79
  -moz-box-sizing: $boxmodel;
53
80
  box-sizing: $boxmodel;
54
81
  }
55
82
 
56
- // Drop shadows
83
+ /**
84
+ * Set box-shadow to element including vendor prefixes
85
+ *
86
+ * @param {string} $shadow - desired box-shadow (shorthand)
87
+ *
88
+ * @group Basics
89
+ */
57
90
  @mixin box-shadow($shadow...) {
58
91
  -webkit-box-shadow: $shadow;
59
92
  -moz-box-shadow: $shadow;
60
93
  box-shadow: $shadow;
61
94
  }
62
95
 
63
- // Transitions
96
+ /**
97
+ * Set transition to element including vendor prefixes
98
+ *
99
+ * @param {string} $transition - desired transition (shorthand)
100
+ *
101
+ * @group Basics
102
+ */
64
103
  @mixin transition($transition...) {
65
104
  -webkit-transition: $transition;
66
105
  -moz-transition: $transition;
@@ -68,6 +107,19 @@
68
107
  transition: $transition;
69
108
  }
70
109
 
110
+ /**
111
+ * Set transition-delay to element including vendor prefixes
112
+ *
113
+ * @param {string} $transition-delay - desired transition-delay either in s or ms
114
+ *
115
+ * @example
116
+ * transition-delay(.2s);
117
+ *
118
+ * @example
119
+ * transition-delay(.50ms);
120
+ *
121
+ * @group Basics
122
+ */
71
123
  @mixin transition-delay($transition-delay) {
72
124
  -webkit-transition-delay: $transition-delay;
73
125
  -moz-transition-delay: $transition-delay;
@@ -75,6 +127,19 @@
75
127
  transition-delay: $transition-delay;
76
128
  }
77
129
 
130
+ /**
131
+ * Set transition-duration to element including vendor prefixes
132
+ *
133
+ * @param {string} $transition-duration - desired transition-duration either in s or ms
134
+ *
135
+ * @example
136
+ * transition-duration(.2s);
137
+ *
138
+ * @example
139
+ * transition-duration(.50ms);
140
+ *
141
+ * @group Basics
142
+ */
78
143
  @mixin transition-duration($transition-duration) {
79
144
  -webkit-transition-duration: $transition-duration;
80
145
  -moz-transition-duration: $transition-duration;
@@ -82,20 +147,46 @@
82
147
  transition-duration: $transition-duration;
83
148
  }
84
149
 
85
- // Opacity
150
+ /**
151
+ * Set opacity with IE filter
152
+ *
153
+ * @param {number} $opacity - between 0 and 1
154
+ *
155
+ * @example
156
+ * opacity(.2);
157
+ *
158
+ * @group Basics
159
+ */
86
160
  @mixin opacity($opacity) {
87
161
  opacity: $opacity / 100;
88
162
  filter: alpha(opacity=$opacity);
89
163
  }
90
164
 
165
+ /**
166
+ * Set font-size, font-weight and line-height in one go
167
+ *
168
+ * @param {string} $size ($base-font-size) - font-size
169
+ * @param {string} $weight (normal) - font-weight
170
+ * @param {string} $lineHeight ($baseLineHeight) - line-height
171
+ *
172
+ * @example
173
+ * font-shorthand(1em, 600, 1.5em);
174
+ *
175
+ * @group Basics
176
+ */
91
177
  @mixin font-shorthand($size: $base-font-size, $weight: normal, $lineHeight: $baseLineHeight) {
92
178
  font-size: $size;
93
179
  font-weight: $weight;
94
180
  line-height: $lineHeight;
95
181
  }
96
182
 
97
- // Placeholder text
98
- // -------------------------
183
+ /**
184
+ * Set input[placeholder] color with vendor prefixes
185
+ *
186
+ * @param {string} $color (#999) - The font color
187
+ *
188
+ * @group Basics
189
+ */
99
190
  @mixin placeholder($color: #999) {
100
191
  &:-moz-placeholder {
101
192
  color: $color;
@@ -108,7 +199,11 @@
108
199
  }
109
200
  }
110
201
 
111
- // Hide element while at the same time make it accessible
202
+ /**
203
+ * Visually hide elements while still preserving screen reader visibility
204
+ *
205
+ * @group Basics
206
+ */
112
207
  @mixin visually-hidden() {
113
208
  margin: -1px;
114
209
  padding: 0;
@@ -120,6 +215,11 @@
120
215
  position: absolute;
121
216
  }
122
217
 
218
+ /**
219
+ * Visually show elements when they have a visually-hidden style
220
+ *
221
+ * @group Basics
222
+ */
123
223
  @mixin visually-shown() {
124
224
  margin: 0;
125
225
  padding: 0;
@@ -130,6 +230,15 @@
130
230
  position: static;
131
231
  }
132
232
 
233
+ /**
234
+ * Set form styling
235
+ *
236
+ * @param {string} $text-color (#555) - The font color
237
+ * @param {string} $border-color (#ccc) - The border color
238
+ * @param {string} $background-color (#f5f5f5) - The background color
239
+ *
240
+ * @group Basics
241
+ */
133
242
  @mixin form-control-validation($text-color: #555, $border-color: #ccc, $background-color: #f5f5f5) {
134
243
  // Color the label and help text
135
244
  .form__label {
@@ -0,0 +1,75 @@
1
+ $fix-mqs: false !default;
2
+ $old-ie: false !default;
3
+
4
+ /**
5
+ * Returns "@content" in either a media querie or regular
6
+ * based on if $fix-mqs is set and to what number
7
+ *
8
+ * @param {string} $width - The width unit for single media queries
9
+ * @param {string} $type (min) - Either "min", "max" or "range"
10
+ * @param {string} $width--max (false) - The max width when using the "range" type
11
+ *
12
+ * @example scss
13
+ * breakpoint(600px) { ... }
14
+ * // will return @media screen and (min-width: 600px) { ... }
15
+ *
16
+ * @example scss
17
+ * breakpoint(800px, max) { ... }
18
+ * // will return @media screen and (max-width: 800px) { ... }
19
+ *
20
+ * @example scss
21
+ * breakpoint(600px, range, 800px) { @content }
22
+ * // will return @media screen and (min-width: 600px) and (max-width: 800px) { ... }
23
+ *
24
+ * @group Breakpoint
25
+ */
26
+
27
+ @mixin breakpoint($width, $type: min, $width--max: false) {
28
+
29
+ // If we're outputting for a fixed media query set...
30
+ @if $fix-mqs {
31
+ // ...and if we should apply these rules...
32
+ @if $type == min and $fix-mqs >= $width {
33
+ // ...output the content the user gave us.
34
+ @content;
35
+ } @else if $type == max and $fix-mqs <= $width {
36
+ // ...output the content the user gave us.
37
+ @content;
38
+ } @else if $type == range and $fix-mqs <= $width--max {
39
+ // ...output the content the user gave us.
40
+ @content;
41
+ }
42
+ } @else {
43
+ @if $type == min {
44
+ // Otherwise, output it using a regular media query
45
+ @media screen and (min-width: $width) {
46
+ @content;
47
+ }
48
+ } @else if $type == max {
49
+ // Otherwise, output it using a regular media query
50
+ @media screen and (max-width: $width) {
51
+ @content;
52
+ }
53
+ } @else if $type == range {
54
+ // Otherwise, output it using a regular media query
55
+ @media screen and (min-width: $width) and (max-width: $width--max) {
56
+ @content;
57
+ }
58
+ }
59
+ }
60
+ }
61
+
62
+ /**
63
+ * Returns "@content" based on if $fix-mqs is set and to what number
64
+ *
65
+ * @example scss
66
+ * old-ie { ... }
67
+ *
68
+ * @group Breakpoint
69
+ */
70
+
71
+ @mixin old-ie() {
72
+ @if $old-ie {
73
+ @content;
74
+ }
75
+ }
@@ -0,0 +1,17 @@
1
+ /**
2
+ * Placeholder you can extend on for clearfixing elements
3
+ *
4
+ * @group placeholders
5
+ */
6
+ %clearfix {
7
+ *zoom: 1;
8
+ &:before,
9
+ &:after {
10
+ display: table;
11
+ content: "";
12
+ line-height: 0;
13
+ }
14
+ &:after {
15
+ clear: both;
16
+ }
17
+ }
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Set box-sizing: border-box to * element (all elements) when included to the project
3
+ *
4
+ * @group setup
5
+ */
6
+ * {
7
+ -webkit-box-sizing: border-box;
8
+ -moz-box-sizing: border-box;
9
+ box-sizing: border-box;
10
+ }
@@ -0,0 +1,62 @@
1
+ /**
2
+ * represents 400px based on a 16px body font size
3
+ *
4
+ * @group Breakpoint
5
+ */
6
+ $breakpoint-alpha: 25em;
7
+
8
+ /**
9
+ * represents 600px based on a 16px body font size
10
+ *
11
+ * @group Breakpoint
12
+ */
13
+ $breakpoint-beta: 37.5em;
14
+
15
+ /**
16
+ * represents 768px based on a 16px body font size
17
+ *
18
+ * @group Breakpoint
19
+ */
20
+ $breakpoint-charlie: 48em;
21
+
22
+ /**
23
+ * represents 1024px based on a 16px body font size
24
+ *
25
+ * @group Breakpoint
26
+ */
27
+ $breakpoint-delta: 64em;
28
+
29
+ /**
30
+ * represents 1200px based on a 16px body font size
31
+ *
32
+ * @group Breakpoint
33
+ */
34
+ $breakpoint-echo: 75em;
35
+
36
+ /**
37
+ * represents 1440px based on a 16px body font size
38
+ *
39
+ * @group Breakpoint
40
+ */
41
+ $breakpoint-foxtrot: 90em;
42
+
43
+ /**
44
+ * represents 1600px based on a 16px body font size
45
+ *
46
+ * @group Breakpoint
47
+ */
48
+ $breakpoint-golf: 100em;
49
+
50
+ /**
51
+ * The base font size for your project
52
+ *
53
+ * @group setup
54
+ */
55
+ $base-font-size: 16px;
56
+
57
+ /**
58
+ * A standard 1.5em baseline
59
+ *
60
+ * @group setup
61
+ */
62
+ $base-line-height: 1.5em;
@@ -0,0 +1,425 @@
1
+ /*! normalize.css v3.0.1 | MIT License | git.io/normalize */
2
+
3
+ /**
4
+ * 1. Set default font family to sans-serif.
5
+ * 2. Prevent iOS text size adjust after orientation change, without disabling
6
+ * user zoom.
7
+ */
8
+
9
+ html {
10
+ font-family: sans-serif; /* 1 */
11
+ -ms-text-size-adjust: 100%; /* 2 */
12
+ -webkit-text-size-adjust: 100%; /* 2 */
13
+ }
14
+
15
+ /**
16
+ * Remove default margin.
17
+ */
18
+
19
+ body {
20
+ margin: 0;
21
+ }
22
+
23
+ /* HTML5 display definitions
24
+ ========================================================================== */
25
+
26
+ /**
27
+ * Correct `block` display not defined for any HTML5 element in IE 8/9.
28
+ * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
29
+ * Correct `block` display not defined for `main` in IE 11.
30
+ */
31
+
32
+ article,
33
+ aside,
34
+ details,
35
+ figcaption,
36
+ figure,
37
+ footer,
38
+ header,
39
+ hgroup,
40
+ main,
41
+ nav,
42
+ section,
43
+ summary {
44
+ display: block;
45
+ }
46
+
47
+ /**
48
+ * 1. Correct `inline-block` display not defined in IE 8/9.
49
+ * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
50
+ */
51
+
52
+ audio,
53
+ canvas,
54
+ progress,
55
+ video {
56
+ display: inline-block; /* 1 */
57
+ vertical-align: baseline; /* 2 */
58
+ }
59
+
60
+ /**
61
+ * Prevent modern browsers from displaying `audio` without controls.
62
+ * Remove excess height in iOS 5 devices.
63
+ */
64
+
65
+ audio:not([controls]) {
66
+ display: none;
67
+ height: 0;
68
+ }
69
+
70
+ /**
71
+ * Address `[hidden]` styling not present in IE 8/9/10.
72
+ * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
73
+ */
74
+
75
+ [hidden],
76
+ template {
77
+ display: none;
78
+ }
79
+
80
+ /* Links
81
+ ========================================================================== */
82
+
83
+ /**
84
+ * Remove the gray background color from active links in IE 10.
85
+ */
86
+
87
+ a {
88
+ background: transparent;
89
+ }
90
+
91
+ /**
92
+ * Improve readability when focused and also mouse hovered in all browsers.
93
+ */
94
+
95
+ a:active,
96
+ a:hover {
97
+ outline: 0;
98
+ }
99
+
100
+ /* Text-level semantics
101
+ ========================================================================== */
102
+
103
+ /**
104
+ * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
105
+ */
106
+
107
+ abbr[title] {
108
+ border-bottom: 1px dotted;
109
+ }
110
+
111
+ /**
112
+ * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
113
+ */
114
+
115
+ b,
116
+ strong {
117
+ font-weight: bold;
118
+ }
119
+
120
+ /**
121
+ * Address styling not present in Safari and Chrome.
122
+ */
123
+
124
+ dfn {
125
+ font-style: italic;
126
+ }
127
+
128
+ /**
129
+ * Address variable `h1` font-size and margin within `section` and `article`
130
+ * contexts in Firefox 4+, Safari, and Chrome.
131
+ */
132
+
133
+ h1 {
134
+ font-size: 2em;
135
+ margin: 0.67em 0;
136
+ }
137
+
138
+ /**
139
+ * Address styling not present in IE 8/9.
140
+ */
141
+
142
+ mark {
143
+ background: #ff0;
144
+ color: #000;
145
+ }
146
+
147
+ /**
148
+ * Address inconsistent and variable font size in all browsers.
149
+ */
150
+
151
+ small {
152
+ font-size: 80%;
153
+ }
154
+
155
+ /**
156
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers.
157
+ */
158
+
159
+ sub,
160
+ sup {
161
+ font-size: 75%;
162
+ line-height: 0;
163
+ position: relative;
164
+ vertical-align: baseline;
165
+ }
166
+
167
+ sup {
168
+ top: -0.5em;
169
+ }
170
+
171
+ sub {
172
+ bottom: -0.25em;
173
+ }
174
+
175
+ /* Embedded content
176
+ ========================================================================== */
177
+
178
+ /**
179
+ * Remove border when inside `a` element in IE 8/9/10.
180
+ */
181
+
182
+ img {
183
+ border: 0;
184
+ }
185
+
186
+ /**
187
+ * Correct overflow not hidden in IE 9/10/11.
188
+ */
189
+
190
+ svg:not(:root) {
191
+ overflow: hidden;
192
+ }
193
+
194
+ /* Grouping content
195
+ ========================================================================== */
196
+
197
+ /**
198
+ * Address margin not present in IE 8/9 and Safari.
199
+ */
200
+
201
+ figure {
202
+ margin: 1em 40px;
203
+ }
204
+
205
+ /**
206
+ * Address differences between Firefox and other browsers.
207
+ */
208
+
209
+ hr {
210
+ -moz-box-sizing: content-box;
211
+ box-sizing: content-box;
212
+ height: 0;
213
+ }
214
+
215
+ /**
216
+ * Contain overflow in all browsers.
217
+ */
218
+
219
+ pre {
220
+ overflow: auto;
221
+ }
222
+
223
+ /**
224
+ * Address odd `em`-unit font size rendering in all browsers.
225
+ */
226
+
227
+ code,
228
+ kbd,
229
+ pre,
230
+ samp {
231
+ font-family: monospace, monospace;
232
+ font-size: 1em;
233
+ }
234
+
235
+ /* Forms
236
+ ========================================================================== */
237
+
238
+ /**
239
+ * Known limitation: by default, Chrome and Safari on OS X allow very limited
240
+ * styling of `select`, unless a `border` property is set.
241
+ */
242
+
243
+ /**
244
+ * 1. Correct color not being inherited.
245
+ * Known issue: affects color of disabled elements.
246
+ * 2. Correct font properties not being inherited.
247
+ * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
248
+ */
249
+
250
+ button,
251
+ input,
252
+ optgroup,
253
+ select,
254
+ textarea {
255
+ color: inherit; /* 1 */
256
+ font: inherit; /* 2 */
257
+ margin: 0; /* 3 */
258
+ }
259
+
260
+ /**
261
+ * Address `overflow` set to `hidden` in IE 8/9/10/11.
262
+ */
263
+
264
+ button {
265
+ overflow: visible;
266
+ }
267
+
268
+ /**
269
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
270
+ * All other form control elements do not inherit `text-transform` values.
271
+ * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
272
+ * Correct `select` style inheritance in Firefox.
273
+ */
274
+
275
+ button,
276
+ select {
277
+ text-transform: none;
278
+ }
279
+
280
+ /**
281
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
282
+ * and `video` controls.
283
+ * 2. Correct inability to style clickable `input` types in iOS.
284
+ * 3. Improve usability and consistency of cursor style between image-type
285
+ * `input` and others.
286
+ */
287
+
288
+ button,
289
+ html input[type="button"], /* 1 */
290
+ input[type="reset"],
291
+ input[type="submit"] {
292
+ -webkit-appearance: button; /* 2 */
293
+ cursor: pointer; /* 3 */
294
+ }
295
+
296
+ /**
297
+ * Re-set default cursor for disabled elements.
298
+ */
299
+
300
+ button[disabled],
301
+ html input[disabled] {
302
+ cursor: default;
303
+ }
304
+
305
+ /**
306
+ * Remove inner padding and border in Firefox 4+.
307
+ */
308
+
309
+ button::-moz-focus-inner,
310
+ input::-moz-focus-inner {
311
+ border: 0;
312
+ padding: 0;
313
+ }
314
+
315
+ /**
316
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in
317
+ * the UA stylesheet.
318
+ */
319
+
320
+ input {
321
+ line-height: normal;
322
+ }
323
+
324
+ /**
325
+ * It's recommended that you don't attempt to style these elements.
326
+ * Firefox's implementation doesn't respect box-sizing, padding, or width.
327
+ *
328
+ * 1. Address box sizing set to `content-box` in IE 8/9/10.
329
+ * 2. Remove excess padding in IE 8/9/10.
330
+ */
331
+
332
+ input[type="checkbox"],
333
+ input[type="radio"] {
334
+ box-sizing: border-box; /* 1 */
335
+ padding: 0; /* 2 */
336
+ }
337
+
338
+ /**
339
+ * Fix the cursor style for Chrome's increment/decrement buttons. For certain
340
+ * `font-size` values of the `input`, it causes the cursor style of the
341
+ * decrement button to change from `default` to `text`.
342
+ */
343
+
344
+ input[type="number"]::-webkit-inner-spin-button,
345
+ input[type="number"]::-webkit-outer-spin-button {
346
+ height: auto;
347
+ }
348
+
349
+ /**
350
+ * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
351
+ * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
352
+ * (include `-moz` to future-proof).
353
+ */
354
+
355
+ input[type="search"] {
356
+ -webkit-appearance: textfield; /* 1 */
357
+ -moz-box-sizing: content-box;
358
+ -webkit-box-sizing: content-box; /* 2 */
359
+ box-sizing: content-box;
360
+ }
361
+
362
+ /**
363
+ * Remove inner padding and search cancel button in Safari and Chrome on OS X.
364
+ * Safari (but not Chrome) clips the cancel button when the search input has
365
+ * padding (and `textfield` appearance).
366
+ */
367
+
368
+ input[type="search"]::-webkit-search-cancel-button,
369
+ input[type="search"]::-webkit-search-decoration {
370
+ -webkit-appearance: none;
371
+ }
372
+
373
+ /**
374
+ * Define consistent border, margin, and padding.
375
+ */
376
+
377
+ fieldset {
378
+ border: 1px solid #c0c0c0;
379
+ margin: 0 2px;
380
+ padding: 0.35em 0.625em 0.75em;
381
+ }
382
+
383
+ /**
384
+ * 1. Correct `color` not being inherited in IE 8/9/10/11.
385
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
386
+ */
387
+
388
+ legend {
389
+ border: 0; /* 1 */
390
+ padding: 0; /* 2 */
391
+ }
392
+
393
+ /**
394
+ * Remove default vertical scrollbar in IE 8/9/10/11.
395
+ */
396
+
397
+ textarea {
398
+ overflow: auto;
399
+ }
400
+
401
+ /**
402
+ * Don't inherit the `font-weight` (applied by a rule above).
403
+ * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
404
+ */
405
+
406
+ optgroup {
407
+ font-weight: bold;
408
+ }
409
+
410
+ /* Tables
411
+ ========================================================================== */
412
+
413
+ /**
414
+ * Remove most spacing between table cells.
415
+ */
416
+
417
+ table {
418
+ border-collapse: collapse;
419
+ border-spacing: 0;
420
+ }
421
+
422
+ td,
423
+ th {
424
+ padding: 0;
425
+ }