-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstylesheet.css
117 lines (97 loc) · 1.55 KB
/
stylesheet.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
* {
margin: 0;
padding: 0;
}
body {
background: #fff;
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}
#main {
position: absolute;
top: 40px;
left: 280px;
width: 580px;
}
#main h1 {
font-size: 40px;
font-weight: normal;
line-height: 40px;
letter-spacing: -1px;
margin-top: 10px;
margin-bottom: 10px;
}
#main h2 {
font-weight: normal;
margin-top: 10px;
margin-bottom: 10px;
}
#main p {
margin: 20px 0;
font-size: 15px;
line-height: 20px;
}
#main ul, #main ol {
margin: 20px;
}
#main li {
font-size: 15px;
line-height: 20px;
}
#main a:link, #main a:visited, #main a:hover {
color: black;
}
#sidebar {
position: absolute;
top: 40px;
left: 20px;
width: 200px;
padding: 20px 20px 0 0;
border-right: 1px solid #ccc;
text-align: right;
}
#sidebar a {
text-decoration: none;
}
#sidebar a:link, a:visited {
color: #03f;
}
#sidebar a:hover {
color: #07f;
}
#sidebar h2 {
text-transform: uppercase;
font-size: 13px;
color: #333;
letter-spacing: 1px;
line-height: 20px;
}
#sidebar ul {
list-style-type: none;
margin: 20px 0;
}
#sidebar li {
font-size: 14px;
line-height: 20px;
}
#sidebar #logo {
width: 130px;
}
code {
font-family: Monaco, 'Droid Sans Mono', 'Consolas', monospace;
font-size: 11px;
white-space: pre-wrap;
}
pre {
background: #f8f8f8;
padding: 5px;
border: solid 1px;
border-color: #d8d8d8;
}
table, tr, th, td {
border: 1px solid lightgray;
border-spacing: 0px;
border-collapse: collapse;
padding: 4px;
margin: 10px;
font-size: 14px;
}