-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
61 lines (50 loc) · 736 Bytes
/
styles.css
File metadata and controls
61 lines (50 loc) · 736 Bytes
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
html {
font-size: 2.0vw;
}
@media all and (min-width:1000px) {
html {
font-size: 20px;
}
}
@media all and (max-width:520px) {
html{
font-size: 14px;
}
}
html {
background-color: #fefefe;
font-family: sans-serif;
font-weight: 400;
line-height: 1.45;
text-rendering: optimizeLegibility;
}
body > main {
margin: 3rem auto 5rem auto;
max-width: 30rem;
padding: 0 1rem;
text-align: left;
}
a[href] {
color: #3344dd;
}
a[href]:hover,
a[href]:focus,
a[href]:active {
color: #bb1122;
}
a[href]:visited {
color: #884488;
}
h1, h2, h3, h4, h5, h6 {
line-height: 1.25;
margin-top: 2.5rem;
}
input, select, button {
padding: 0.5rem;
}
img {
max-width: 100%;
}
p {
margin: 0 0 1em 0;
}