Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / ui / new_ui / ui / stylesheets / normalize.css @ de9b2b51

History | View | Annotate | Download (8.4 kB)

1
/*! normalize.css v2.1.0 | MIT License | git.io/normalize */
2
/* ==========================================================================
3
   HTML5 display definitions
4
   ========================================================================== */
5
/**
6
 * Correct `block` display not defined in IE 8/9.
7
 */
8
/* line 22, ../sass/normalize.scss */
9
article,
10
aside,
11
details,
12
figcaption,
13
figure,
14
footer,
15
header,
16
hgroup,
17
main,
18
nav,
19
section,
20
summary {
21
  display: block;
22
}
23

    
24
/**
25
 * Correct `inline-block` display not defined in IE 8/9.
26
 */
27
/* line 32, ../sass/normalize.scss */
28
audio,
29
canvas,
30
video {
31
  display: inline-block;
32
}
33

    
34
/**
35
 * Prevent modern browsers from displaying `audio` without controls.
36
 * Remove excess height in iOS 5 devices.
37
 */
38
/* line 41, ../sass/normalize.scss */
39
audio:not([controls]) {
40
  display: none;
41
  height: 0;
42
}
43

    
44
/**
45
 * Address styling not present in IE 8/9.
46
 */
47
/* line 50, ../sass/normalize.scss */
48
[hidden] {
49
  display: none;
50
}
51

    
52
/* ==========================================================================
53
   Base
54
   ========================================================================== */
55
/**
56
 * 1. Set default font family to sans-serif.
57
 * 2. Prevent iOS text size adjust after orientation change, without disabling
58
 *    user zoom.
59
 */
60
/* line 64, ../sass/normalize.scss */
61
html {
62
  font-family: sans-serif;
63
  /* 1 */
64
  -webkit-text-size-adjust: 100%;
65
  /* 2 */
66
  -ms-text-size-adjust: 100%;
67
  /* 2 */
68
}
69

    
70
/**
71
 * Remove default margin.
72
 */
73
/* line 74, ../sass/normalize.scss */
74
body {
75
  margin: 0;
76
}
77

    
78
/* ==========================================================================
79
   Links
80
   ========================================================================== */
81
/**
82
 * Address `outline` inconsistency between Chrome and other browsers.
83
 */
84
/* line 86, ../sass/normalize.scss */
85
a:focus {
86
  outline: thin dotted;
87
}
88

    
89
/**
90
 * Improve readability when focused and also mouse hovered in all browsers.
91
 */
92
/* line 95, ../sass/normalize.scss */
93
a:active,
94
a:hover {
95
  outline: 0;
96
}
97

    
98
/* ==========================================================================
99
   Typography
100
   ========================================================================== */
101
/**
102
 * Address variable `h1` font-size and margin within `section` and `article`
103
 * contexts in Firefox 4+, Safari 5, and Chrome.
104
 */
105
/* line 108, ../sass/normalize.scss */
106
h1 {
107
  font-size: 2em;
108
  margin: 0.67em 0;
109
}
110

    
111
/**
112
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
113
 */
114
/* line 117, ../sass/normalize.scss */
115
abbr[title] {
116
  border-bottom: 1px dotted;
117
}
118

    
119
/**
120
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
121
 */
122
/* line 126, ../sass/normalize.scss */
123
b,
124
strong {
125
  font-weight: bold;
126
}
127

    
128
/**
129
 * Address styling not present in Safari 5 and Chrome.
130
 */
131
/* line 134, ../sass/normalize.scss */
132
dfn {
133
  font-style: italic;
134
}
135

    
136
/**
137
 * Address differences between Firefox and other browsers.
138
 */
139
/* line 142, ../sass/normalize.scss */
140
hr {
141
  -moz-box-sizing: content-box;
142
  box-sizing: content-box;
143
  height: 0;
144
}
145

    
146
/**
147
 * Address styling not present in IE 8/9.
148
 */
149
/* line 152, ../sass/normalize.scss */
150
mark {
151
  background: #ff0;
152
  color: #000;
153
}
154

    
155
/**
156
 * Correct font family set oddly in Safari 5 and Chrome.
157
 */
158
/* line 164, ../sass/normalize.scss */
159
code,
160
kbd,
161
pre,
162
samp {
163
  font-family: monospace, serif;
164
  font-size: 1em;
165
}
166

    
167
/**
168
 * Improve readability of pre-formatted text in all browsers.
169
 */
170
/* line 173, ../sass/normalize.scss */
171
pre {
172
  white-space: pre-wrap;
173
}
174

    
175
/**
176
 * Set consistent quote types.
177
 */
178
/* line 181, ../sass/normalize.scss */
179
q {
180
  quotes: "\201C" "\201D" "\2018" "\2019";
181
}
182

    
183
/**
184
 * Address inconsistent and variable font size in all browsers.
185
 */
186
/* line 189, ../sass/normalize.scss */
187
small {
188
  font-size: 80%;
189
}
190

    
191
/**
192
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
193
 */
194
/* line 198, ../sass/normalize.scss */
195
sub,
196
sup {
197
  font-size: 75%;
198
  line-height: 0;
199
  position: relative;
200
  vertical-align: baseline;
201
}
202

    
203
/* line 205, ../sass/normalize.scss */
204
sup {
205
  top: -0.5em;
206
}
207

    
208
/* line 209, ../sass/normalize.scss */
209
sub {
210
  bottom: -0.25em;
211
}
212

    
213
/* ==========================================================================
214
   Embedded content
215
   ========================================================================== */
216
/**
217
 * Remove border when inside `a` element in IE 8/9.
218
 */
219
/* line 221, ../sass/normalize.scss */
220
img {
221
  border: 0;
222
}
223

    
224
/**
225
 * Correct overflow displayed oddly in IE 9.
226
 */
227
/* line 229, ../sass/normalize.scss */
228
svg:not(:root) {
229
  overflow: hidden;
230
}
231

    
232
/* ==========================================================================
233
   Figures
234
   ========================================================================== */
235
/**
236
 * Address margin not present in IE 8/9 and Safari 5.
237
 */
238
/* line 241, ../sass/normalize.scss */
239
figure {
240
  margin: 0;
241
}
242

    
243
/* ==========================================================================
244
   Forms
245
   ========================================================================== */
246
/**
247
 * Define consistent border, margin, and padding.
248
 */
249
/* line 253, ../sass/normalize.scss */
250
fieldset {
251
  border: 1px solid #c0c0c0;
252
  margin: 0 2px;
253
  padding: 0.35em 0.625em 0.75em;
254
}
255

    
256
/**
257
 * 1. Correct `color` not being inherited in IE 8/9.
258
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
259
 */
260
/* line 264, ../sass/normalize.scss */
261
legend {
262
  border: 0;
263
  /* 1 */
264
  padding: 0;
265
  /* 2 */
266
}
267

    
268
/**
269
 * 1. Correct font family not being inherited in all browsers.
270
 * 2. Correct font size not being inherited in all browsers.
271
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
272
 */
273
/* line 278, ../sass/normalize.scss */
274
button,
275
input,
276
select,
277
textarea {
278
  font-family: inherit;
279
  /* 1 */
280
  font-size: 100%;
281
  /* 2 */
282
  margin: 0;
283
  /* 3 */
284
}
285

    
286
/**
287
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
288
 * the UA stylesheet.
289
 */
290
/* line 290, ../sass/normalize.scss */
291
button,
292
input {
293
  line-height: normal;
294
}
295

    
296
/**
297
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
298
 * All other form control elements do not inherit `text-transform` values.
299
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
300
 * Correct `select` style inheritance in Firefox 4+ and Opera.
301
 */
302
/* line 302, ../sass/normalize.scss */
303
button,
304
select {
305
  text-transform: none;
306
}
307

    
308
/**
309
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
310
 *    and `video` controls.
311
 * 2. Correct inability to style clickable `input` types in iOS.
312
 * 3. Improve usability and consistency of cursor style between image-type
313
 *    `input` and others.
314
 */
315
/* line 317, ../sass/normalize.scss */
316
button,
317
html input[type="button"],
318
input[type="reset"],
319
input[type="submit"] {
320
  -webkit-appearance: button;
321
  /* 2 */
322
  cursor: pointer;
323
  /* 3 */
324
}
325

    
326
/**
327
 * Re-set default cursor for disabled elements.
328
 */
329
/* line 327, ../sass/normalize.scss */
330
button[disabled],
331
html input[disabled] {
332
  cursor: default;
333
}
334

    
335
/**
336
 * 1. Address box sizing set to `content-box` in IE 8/9.
337
 * 2. Remove excess padding in IE 8/9.
338
 */
339
/* line 337, ../sass/normalize.scss */
340
input[type="checkbox"],
341
input[type="radio"] {
342
  box-sizing: border-box;
343
  /* 1 */
344
  padding: 0;
345
  /* 2 */
346
}
347

    
348
/**
349
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
350
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
351
 *    (include `-moz` to future-proof).
352
 */
353
/* line 348, ../sass/normalize.scss */
354
input[type="search"] {
355
  -webkit-appearance: textfield;
356
  /* 1 */
357
  -moz-box-sizing: content-box;
358
  -webkit-box-sizing: content-box;
359
  /* 2 */
360
  box-sizing: content-box;
361
}
362

    
363
/**
364
 * Remove inner padding and search cancel button in Safari 5 and Chrome
365
 * on OS X.
366
 */
367
/* line 361, ../sass/normalize.scss */
368
input[type="search"]::-webkit-search-cancel-button,
369
input[type="search"]::-webkit-search-decoration {
370
  -webkit-appearance: none;
371
}
372

    
373
/**
374
 * Remove inner padding and border in Firefox 4+.
375
 */
376
/* line 370, ../sass/normalize.scss */
377
button::-moz-focus-inner,
378
input::-moz-focus-inner {
379
  border: 0;
380
  padding: 0;
381
}
382

    
383
/**
384
 * 1. Remove default vertical scrollbar in IE 8/9.
385
 * 2. Improve readability and alignment in all browsers.
386
 */
387
/* line 380, ../sass/normalize.scss */
388
textarea {
389
  overflow: auto;
390
  /* 1 */
391
  vertical-align: top;
392
  /* 2 */
393
}
394

    
395
/* ==========================================================================
396
   Tables
397
   ========================================================================== */
398
/**
399
 * Remove most spacing between table cells.
400
 */
401
/* line 393, ../sass/normalize.scss */
402
table {
403
  border-collapse: collapse;
404
  border-spacing: 0;
405
}