UNPKG

922 BSCSSView Raw
1// http://jaydenseric.com/blog/forget-normalize-or-resets-lay-your-own-css-foundation
2// sass-lint:disable no-vendor-prefixes
3
4*,
5*:before,
6*:after {
7 box-sizing: border-box;
8}
9
10html {
11 -ms-text-size-adjust: 100%;
12 -webkit-text-size-adjust: 100%;
13}
14
15body {
16 margin: 0;
17 font: 16px/1 sans-serif;
18 -moz-osx-font-smoothing: grayscale;
19 -webkit-font-smoothing: antialiased;
20}
21
22h1,
23h2,
24h3,
25h4,
26h5,
27h6,
28p,
29blockquote,
30figure,
31ol,
32ul {
33 margin: 0;
34 padding: 0;
35}
36
37main,
38li {
39 display: block;
40}
41
42h1,
43h2,
44h3,
45h4 {
46 font-size: inherit;
47}
48
49strong {
50 font-weight: bold;
51}
52
53a,
54button {
55 color: inherit;
56}
57
58a {
59 text-decoration: none;
60}
61
62button {
63 background: none;
64 cursor: pointer;
65 overflow: visible;
66 letter-spacing: inherit;
67 font: inherit;
68 -webkit-font-smoothing: inherit;
69}
70
71::-moz-focus-inner {
72 border: 0;
73 padding: 0;
74}
75
76:focus {
77 outline: 0;
78}
79
80img {
81 border: 0;
82 max-width: 100%;
83 height: auto;
84}