diff options
author | Pacien TRAN-GIRARD | 2014-08-10 17:28:37 +0200 |
---|---|---|
committer | Pacien TRAN-GIRARD | 2014-08-10 17:28:37 +0200 |
commit | e7bf5952d0729b37e677168b6e8fbd1ce58ed1a2 (patch) | |
tree | 189988e3e272b806262d1df6b87f1da089ef4af8 /point/libs/normalizecss | |
parent | a32e898c8d7ad3774f5654e88bb24d5c26482137 (diff) | |
download | whatsthepoint-e7bf5952d0729b37e677168b6e8fbd1ce58ed1a2.tar.gz |
Diffstat (limited to 'point/libs/normalizecss')
-rw-r--r-- | point/libs/normalizecss/normalize.css | 425 |
1 files changed, 425 insertions, 0 deletions
diff --git a/point/libs/normalizecss/normalize.css b/point/libs/normalizecss/normalize.css new file mode 100644 index 0000000..67a5436 --- /dev/null +++ b/point/libs/normalizecss/normalize.css | |||
@@ -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 | /** | ||