blob: 5d05f9e60ccc0b307640329b53f7bdd7abf7abcf (
plain)
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
|
body {
max-width: 60em;
margin: 1em auto;
padding: 0 .62em;
font: 1.2em/1.62em sans-serif;
word-wrap: break-word;
}
h1, h2, h3 {
line-height: 1.2em;
}
a {
text-decoration: none;
}
a:hover, a:focus {
text-decoration: underline;
}
h1 a, h3 a, a.text {
color: #31363b;
}
.content {
max-width: 50em;
margin: 0 auto;
}
li {
line-height: 1.2em;
margin-bottom: 5px;
}
li.course {
margin-bottom: 20px;
}
th {
text-align: right;
font-weight: normal;
vertical-align: top;
}
@media screen and (max-width: 439px) {
th, td {
display: block;
text-align: left;
}
}
@media print {
body, .content {
max-width: none;
}
header, footer, p.subscribe {
display: none;
}
}
|