-
Notifications
You must be signed in to change notification settings - Fork 17
/
main.css
73 lines (59 loc) · 859 Bytes
/
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
body {
font-family: Helvetica, Arial, sans-serif;
}
#wrapper {
width: 800px;
margin: 30px auto;
}
#header {
margin-bottom: 30px;
}
#navigation {
float: left;
width: 100%;
line-height: normal;
height: 30px;
}
#navigation ul li {
float: left;
}
#navigation ul li.selected {
}
#navigation ul li a {
color: #666;
margin-right: 10px;
text-decoration: none;
border-bottom: 1px solid #999;
}
#navigation ul li a:hover {
color: #000;
border-bottom: 1px solid #333;
text-decoration: none;
}
#content h1,
#content h4,
#content h3,
#content h4 {
font-weight: bold;
margin-bottom: 15px;
}
#content h1 {
font-size: 2em;
}
#content h2 {
font-size: 1.6em;
}
#content h3 {
font-size: 1.2em;
}
#content h4 {
font-size: 1em;
}
#content p {
margin-bottom: 1em;
}
#content pre {
margin-bottom: 1em;
padding: 1em;
background-color: #eee;
}