60aa8d513c860026c95a3cc6dd48737bb15e5348
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / style / bootstrap / reset.scss
1 /**
2 * Parts taken from
3 * http://meyerweb.com/eric/tools/css/reset/
4 * v2.0 | 20110126
5 * License: none (public domain)
6 * modifyed to meet the needs of WoltLab
7 */
8
9 html, body, applet, object, iframe,
10 h1, h2, h3, h4, h5, h6, p, blockquote, pre,
11 address, big, cite, code, q,
12 dl, dt, dd, ol, ul, li,
13 fieldset, form, label, legend,
14 table, caption, tbody, tfoot, thead, tr, th, td,
15 canvas, embed,
16 figure, figcaption,
17 audio, video {
18 margin: 0;
19 padding: 0;
20 border: 0;
21
22 }
23
24 img {
25 border: 0;
26 }
27
28 h1, h2, h3, h4, h5, h6 {
29 font-weight: normal;
30 font-size: 100%;
31 }
32
33 ol, ul {
34 list-style: none;
35 }
36
37 blockquote, q {
38 quotes: none;
39 }
40
41 blockquote::before,
42 blockquote::after,
43 q::before,
44 q::after {
45 content: '';
46 content: none;
47 }
48
49 address {
50 font-style: normal;
51 }
52
53 /**
54 * sane box-sizing value for all elements
55 *
56 * https://css-tricks.com/box-sizing/
57 */
58 html {
59 box-sizing: border-box;
60 }
61
62 *,
63 *::before,
64 *::after {
65 box-sizing: inherit;
66 min-width: 0;
67 }
68
69 html {
70 // prevent iOS Safari from blowing up font size when in landscape mode
71 -webkit-text-size-adjust: 100%;
72 }