-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
70 lines (57 loc) · 882 Bytes
/
styles.css
File metadata and controls
70 lines (57 loc) · 882 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
62
63
64
65
66
67
68
69
70
/* Font Sizing */
@media all {
html {
font-size: 2.2vw;
}
}
@media all and (min-width:1000px) {
html {
font-size: 20px;
}
}
@media all and (max-width:520px) {
html{
font-size: 14px;
}
}
/* Content Blocks */
html {
margin: 0;
padding: 0;
}
body {
font-family: sans-serif;
line-height: 1.6;
margin: 0 auto;
max-width: 30rem;
padding: 0 2rem;
text-rendering: optimizeLegibility;
}
footer[role=contentinfo] {
font-size: 85%;
margin-top: 1.5rem;
text-align: right;
}
/* Links */
a[href] {
border-bottom: 1px dashed #999;
color: black;
text-decoration: none;
}
a:hover, a:focus, a:active {
color: #bb1122;
}
a:visited {
color: #884488;
}
.conspicuous {
font-style: italic;
font-weight: bold;
}
header[role=banner] img {
float: right;
margin-left: 1rem;
margin-right: 1rem;
margin-top: 1rem;
width: 50%;
}