forked from PatMartin/Dex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
180 lines (174 loc) · 2.63 KB
/
style.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
#container {
margin: 0 auto;
width: 1024px;
background: #fff;
}
#header {
background: white;
padding: 10px;
}
#header h1 {
margin: 0;
color: #323030;
}
#navigation {
float: left;
width: 900px;
background: #000000;
}
#navigation ul {
margin: 0;
padding: 0;
}
#navigation ul li {
list-style-type: none;
display: inline;
}
#navigation li a {
display: block;
float: left;
padding: 5px 18px;
color: white;
text-decoration: none;
border-right: 1px solid #fff;
}
#navigation li a:hover {
background: #333;
}
#content-container {
float: left;
width: 900px;
background: #eeeeee;
}
#content {
clear: left;
float: left;
width: 600px;
padding: 10px 0;
margin: 0 0 0 5px;
display: inline;
}
#content h1 {
font-family: "Arial";
font-size: 24px;
margin: 5px 0px 5px 0px;
color: steelblue;
}
#content h2 {
font-family: "Arial";
font-size: 20px;
margin: 5px 0px 5px 0px;
color: steelblue;
}
#content h3 {
font-family: "Arial";
font-size: 16px;
margin: 5px 0px 5px 0px;
color: steelblue;
}
#content h4 {
font-family: "Arial";
font-size: 12px;
margin: 5px 0px 5px 0px;
color: steelblue;
}
#content h5 {
font-family: "Arial";
font-size: 10px;
margin: 5px 0px 5px 0px;
color: steelblue;
}
#indent1 {
margin-left: 10px;
}
#indent2 {
margin-left: 20px;
}
#indent3 {
margin-left: 25px;
}
#indent4 {
margin-left: 30px;
}
#indent5 {
margin-left: 35px;
}
#aside {
float: right;
width: 240px;
padding: 10px 0;
margin: 0 20px 0 0;
display: inline;
font-size: 12px;
}
#aside h1 {
font-family: "Arial";
font-size: 16px;
margin: 5px 0px 5px 0px;
color: steelblue;
}
#aside h2 {
font-family: "Arial";
font-size: 14px;
margin: 5px 0px 5px 0px;
color: steelblue;
}
#aside h3 {
font-family: "Arial";
font-size: 12px;
margin: 5px 0px 5px 0px;
color: steelblue;
}
#aside h4 {
font-family: "Arial";
font-size: 10px;
margin: 5px 0px 5px 0px;
color: steelblue;
}
#aside h5 {
font-family: "Arial";
font-size: 8px;
margin: 5px 0px 5px 0px;
color: steelblue;
}
#footer {
clear: both;
background: white;
text-align: right;
padding: 20px;
height: 1%;
}
body {
margin: 0;
padding: 0;
background: #FFFFFF;
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
color: #444444;
}
#aside ul li {
list-style-type: none;
}
#horizontal-list ul {
margin: 0;
padding: 0;
list-style-type: none;
}
#horizontal-list ul li {
list-style-type: none;
display: inline;
}
#horizontal-list li a {
display: inline-block;
padding: 2px 2px;
color: white;
text-decoration: none;
border-right: 1px solid #fff;
}
#horizontal-list li a:hover {
background: steelblue;
}
.thumbnail {
height: 100px;
width: 150px;
}