aboutsummaryrefslogtreecommitdiff
path: root/point/libs/normalizecss/normalize.css
diff options
context:
space:
mode:
Diffstat (limited to 'point/libs/normalizecss/normalize.css')
-rw-r--r--point/libs/normalizecss/normalize.css425
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
9html {
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
19body {
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
32article,
33aside,
34details,
35figcaption,
36figure,
37footer,
38header,
39hgroup,
40main,
41nav,
42section,
43summary {
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
52audio,
53canvas,
54progress,
55video {
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
65audio: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],
76template {
77 display: none;
78}
79
80/* Links
81 ========================================================================== */
82
83/**
84 * Remove the gray background color from active links in IE 10.
85 */
86
87a {
88 background: transparent;
89}
90
91/**
92 * Improve readability when focused and also mouse hovered in all browsers.
93 */
94
95a:active,
96a: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
107abbr[title] {
108 border-bottom: 1px dotted;
109}
110
111/**
112 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
113 */
114
115b,
116strong {
117 font-weight: bold;
118}
119
120/**
121 * Address styling not present in Safari and Chrome.
122 */
123
124dfn {
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
133h1 {
134 font-size: 2em;
135 margin: 0.67em 0;
136}
137
138/**
139 * Address styling not present in IE 8/9.
140 */
141
142mark {
143 background: #ff0;
144 color: #000;
145}
146
147/**
148 * Address inconsistent and variable font size in all browsers.
149 */
150
151small {
152 font-size: 80%;
153}
154
155/**
156 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
157 */
158
159sub,
160sup {
161 font-size: 75%;
162 line-height: 0;
163 position: relative;
164 vertical-align: baseline;
165}
166
167sup {
168 top: -0.5em;
169}
170
171sub {
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
182img {
183 border: 0;
184}
185
186/**
187 * Correct overflow not hidden in IE 9/10/11.
188 */
189
190svg: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
201figure {
202 margin: 1em 40px;
203}
204
205/**
206 * Address differences between Firefox and other browsers.
207 */
208
209hr {
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
219pre {
220 overflow: auto;
221}
222
223/**
224 * Address odd `em`-unit font size rendering in all browsers.
225 */
226
227code,
228kbd,
229pre,
230samp {
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.