aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/reset.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/styles/reset.scss')
-rw-r--r--src/styles/reset.scss139
1 files changed, 116 insertions, 23 deletions
diff --git a/src/styles/reset.scss b/src/styles/reset.scss
index d87ce652a..929494514 100644
--- a/src/styles/reset.scss
+++ b/src/styles/reset.scss
@@ -3,19 +3,87 @@
3/* ============ RESET =========== */ 3/* ============ RESET =========== */
4/* http://meyerweb.com/eric/tools/css/reset */ 4/* http://meyerweb.com/eric/tools/css/reset */
5 5
6html, body, div, span, applet, object, iframe, 6html,
7h1, h2, h3, h4, h5, h6, p, blockquote, pre, 7body,
8a, abbr, acronym, address, big, cite, code, 8div,
9del, dfn, em, img, ins, kbd, q, s, samp, 9span,
10small, strike, strong, sub, sup, tt, var, 10applet,
11b, u, i, center, 11object,
12dl, dt, dd, ol, ul, li, 12iframe,
13fieldset, form, label, legend, 13h1,
14table, caption, tbody, tfoot, thead, tr, th, td, 14h2,
15article, aside, canvas, details, embed, 15h3,
16figure, figcaption, footer, header, hgroup, 16h4,
17menu, nav, output, ruby, section, summary, 17h5,
18time, mark, audio, video { 18h6,
19p,
20blockquote,
21pre,
22a,
23abbr,
24acronym,
25address,
26big,
27cite,
28code,
29del,
30dfn,
31em,
32img,
33ins,
34kbd,
35q,
36s,
37samp,
38small,
39strike,
40strong,
41sub,
42sup,
43tt,
44var,
45b,
46u,
47i,
48center,
49dl,
50dt,
51dd,
52ol,
53ul,
54li,
55fieldset,
56form,
57label,
58legend,
59table,
60caption,
61tbody,
62tfoot,
63thead,
64tr,
65th,
66td,
67article,
68aside,
69canvas,
70details,
71embed,
72figure,
73figcaption,
74footer,
75header,
76hgroup,
77menu,
78nav,
79output,
80ruby,
81section,
82summary,
83time,
84mark,
85audio,
86video {
19 border: 0; 87 border: 0;
20 font: inherit; 88 font: inherit;
21 font-size: 100%; 89 font-size: 100%;
@@ -23,11 +91,24 @@ time, mark, audio, video {
23 padding: 0; 91 padding: 0;
24} 92}
25 93
26article, aside, details, figcaption, figure, 94article,
27footer, header, hgroup, menu, nav, section { display: block; } 95aside,
96details,
97figcaption,
98figure,
99footer,
100header,
101hgroup,
102menu,
103nav,
104section {
105 display: block;
106}
28 107
29ol, 108ol,
30ul { list-style: none; } 109ul {
110 list-style: none;
111}
31 112
32blockquote, 113blockquote,
33q { 114q {
@@ -50,11 +131,13 @@ button {
50 border: none; 131 border: none;
51 padding: 0; 132 padding: 0;
52 133
53 &:focus { outline: 0; } 134 &:focus {
135 outline: 0;
136 }
54} 137}
55 138
56html { 139html {
57 font-size: 62.5%; 140 font-size: 62.5%;
58 font-family: 'Open Sans'; 141 font-family: 'Open Sans';
59} 142}
60 143
@@ -63,7 +146,9 @@ body {
63 font-size: 1.4rem; 146 font-size: 1.4rem;
64 line-height: 1; 147 line-height: 1;
65 148
66 &.theme__dark { color: $dark-theme-gray-smoke; } 149 &.theme__dark {
150 color: $dark-theme-gray-smoke;
151 }
67} 152}
68 153
69* { 154* {
@@ -74,12 +159,20 @@ body {
74 -webkit-user-select: none; 159 -webkit-user-select: none;
75} 160}
76 161
77html, body, div { 162html,
163body,
164div {
78 height: 100%; 165 height: 100%;
79 background: none; 166 background: none;
80 box-sizing: border-box; 167 box-sizing: border-box;
81} 168}
82 169
83*:focus { outline: none; } 170*:focus {
84img { pointer-events: none; } 171 outline: none;
85a { cursor: default; } 172}
173img {
174 pointer-events: none;
175}
176a {
177 cursor: default;
178}