UNPKG

816 BSCSSView Raw
1@import "variables";
2
3html {
4 box-sizing: border-box;
5}
6
7*,
8*::before,
9*::after {
10 box-sizing: inherit;
11}
12
13*:focus {
14 outline-color: transparent;
15}
16
17// Remove default margins
18blockquote,
19dl,
20dd,
21h1,
22h2,
23h3,
24h4,
25h5,
26h6,
27figure,
28p,
29pre {
30 margin: 0;
31}
32
33// Unstyled headings
34h1,
35h2,
36h3,
37h4,
38h5,
39h6 {
40 font-size: inherit;
41 font-weight: inherit;
42}
43
44// Unstyled list
45ol,
46ul {
47 list-style: none;
48 margin: 0;
49 padding: 0;
50}
51
52// Media element are block
53img,
54svg,
55video,
56canvas,
57audio,
58iframe,
59embed,
60object {
61 display: block;
62 vertical-align: middle;
63}
64
65// Reset border style
66*,
67:after,
68:before {
69 border-width: 0;
70 border-style: solid;
71 border-color: map-get($colors, "grey-light");
72}
73
74// Unstyle link
75a {
76 text-decoration: none;
77}