-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnormalize.css
66 lines (53 loc) · 912 Bytes
/
normalize.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Form styles, sub, sup, small, hr were deleted */
html {
line-height: 1.15;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
}
pre {
font-family: monospace, monospace;
font-size: 1em;
}
b,
strong {
font-weight: bolder;
}
code,
kbd,
samp {
font-family: monospace, monospace;
font-size: 1em;
}
img {
border-style: none;
}
[hidden] {
display: none;
}
/* Common Styles */
* {
box-sizing: border-box;
}
html,
body {
font-family: JetBrains Mono, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}
:root {
--text-color: #283149;
--link-color: #00818a;
--link-hover-color: #404b69;
}
a {
color: var(--link-color);
}
a:hover {
color: var(--link-hover-color);
}