-
Notifications
You must be signed in to change notification settings - Fork 3
/
default.css
135 lines (112 loc) · 1.86 KB
/
default.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/* Reset */
* {
margin: 0;
padding: 0;
}
body {
color: #000000;
font-family: Georgia, "Times New Roman", serif;
font-size: 16px;
text-align: center;
}
h2, h3 {
margin-bottom: 16px;
}
img {
border-width: 0;
}
a, a:hover, a:visited {
color: #323232;
}
header, section, article, footer {
display: block;
}
p {
line-height: 24px;
margin-bottom: 25px;
}
.clearboth {
clear: both;
}
ol, li {
margin-left: 11px;
}
dl dd {
line-height: 25px
}
dl dt {
font-weight: bold;
margin-bottom: 15px;
}
dl dd:before {
content: '- ';
}
/* Specific */
.page_wrapper {
margin: 5px auto;
text-align: left;
width: 960px;
}
hr.top-rule {
background-color: #000000;
background-image: url('top_rule.png');
background-repeat: no-repeat;
height: 70px;
margin: 0 0 10px 0;
width: 958px;
}
hr.bottom-rule {
background-color: #000000;
background-image: url('bottom_rule.png');
background-repeat: no-repeat;
height: 70px;
margin: 0 0 10px 0;
width: 958px;
}
header h1 {
display: block;
font-size: 170px;
letter-spacing: 10px;
font-weight: normal;
text-align: center;
text-transform: uppercase;
}
#main {
float: left;
margin-left: 10px;
padding: 0;
width: 590px;
}
hr {
background-color: #000000;
border-width: 0;
height: 2px;
margin: 25px 0px;
width: 100%;
}
#sidebar {
float: left;
margin-left: 100px;
width: 250px;
}
#docs h3 {
margin-bottom: 10px;
}
#docs h3 a {
background-image: url('dinner_plate.png');
background-repeat: no-repeat;
padding: 30px 0 35px 70px;
}
#docs p {
font-size: 12px;
line-height: 18px;
margin: 0;
padding-left: 70px;
}
footer {
border-top: solid 2px #000000;
clear: both;
font-size: 12px;
margin-top: 20px;
padding-top: 15px;
}