-
Notifications
You must be signed in to change notification settings - Fork 174
/
Copy pathmain.css
58 lines (48 loc) · 1.21 KB
/
main.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
body {
font-family: Helvetica, Arial, sans-serif;
}
a { color: #2a7ae2; text-decoration: none; }
a:hover { color: #000; text-decoration: underline; }
a:visited { color: #205caa; }
.wrapper { margin: 2ex 4em; }
div.sidebar { margin-left: 10px; width: 230px; float: left; }
div.mainbar { margin-left: 240px; line-height: 1.5; }
div.lowered { margin-top: 10ex; }
div.clear { clear: both; }
div.sidebar li { margin: 0.5ex 0; }
table {
border-collapse: collapse;
}
th, td {
border: 1px solid black;
padding: 1ex 1em;
vertical-align: top;
}
.site-footer {
margin-top: 4ex;
border-top: 1px solid #e8e8e8;
padding-top: 3ex;
}
.site-footer ul { list-style: none; }
.site-footer ul, .site-footer p { margin-top: 0; }
.site-footer li, .site-footer p {
font-size: 15px;
letter-spacing: -.3px;
color: #828282;
}
.icon > svg {
display: inline-block;
width: 16px;
height: 16px;
vertical-align: middle;
}
@media print, screen and (max-width: 720px) {
.wrapper { margin: 1ex 2em; }
div.sidebar { width: 160px; }
div.mainbar { margin-left: 170px; }
}
@media print, screen and (max-width: 480px) {
.wrapper { margin: 1ex 1em; }
div.sidebar { display: none; }
div.mainbar { margin-left: 0; }
}