aboutsummaryrefslogtreecommitdiffstats
path: root/waterspill/static/css/style.css
blob: 760429c609ca3513680d20a4590be07571b8cb80 (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
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
* { margin: 0; padding: 0; }

/* *** General Styles *** */

body  {
	background: url(../images/background.jpg);
	color: #293331;
	font: 13px Georgia, "Times New Roman", Times, serif;
	text-align: center;
}

a {
	color: #293331;
}

a:hover {
	background: #a7aa9e;
}

#header a,
#topMenu a,
.blogItem h2 a,
.blogMeta a {
	text-decoration: none;
}

p {
	line-height: 1.5em;
	padding: 5px 0;
}

h1,
h2,
h3 { 
	font-weight: normal;
}

blockquote {
	background: url(../images/body.gif) top left repeat-y;
	font-size: 14px;
	font-style: italic;
	padding: 5px 0 5px 30px;
}

ul,
ol {
	margin-left: 20px;
	line-height: 1.6em;
}

/* *** Layout *** */

#container { 
	background: url(../images/spill.gif) no-repeat top right;
	margin: 0 auto;
	text-align: left;
	width: 780px;
} 

#header { 
	background: url(../images/header.gif) no-repeat;
	height: 109px;
	padding: 0 10px 0 20px;
} 

#topMenu {
	background: url(../images/menubar.gif) no-repeat;
	height: 48px;
}

#sidebar {
	float: right;
	padding: 20px 30px 10px 0;
	text-align: right;
	width: 150px; 
}

#mainContent {
	background: url(../images/body.gif) repeat-y;
	padding: 20px 250px 10px 40px;
} 

#footer { 
	background: url(../images/bottom.gif) no-repeat;
	font-size: 12px;
	height: 70px;
	padding: 0 10px 0 20px;
} 

/* *** Header Styles *** */

#header h1 {
	font-size: 48px;
	font-weight: normal;
	padding: 20px 0 0 170px;
}

#header h2 {
	font-size: 18px;
	font-weight: normal;
	text-align: right;
}

#header a:hover {
	background: none;
}

/* *** Top Menu Styles *** */

#topMenu ul {
	font-size: 24px;
	line-height: 1em;
	list-style: none;
	padding: 14px 30px 0 0;
	text-align: right;
}

#topMenu li {
	display: inline;
}

#topMenu a:hover {
	background: url(../images/hr.gif) center center no-repeat;
}

/* *** Blog Styles *** */

.blogItem {
	padding-bottom: 20px;
}

.blogItem h2,
.blogItem h3 {
	font-weight: normal;
}

.blogItem h2 a:hover,
.blogItem h3 a:hover {
	background: none;
	text-decoration: underline;
}

.blogItem h2 {
	font-size: 24px;
}

.blogItem h3 {
	background: url(../images/hr.gif) bottom left no-repeat;
	font-size: 14px;
	padding-bottom: 6px;
}

.blogItem h3.blogMeta {
	background-position: top left;
	padding: 6px 0 0 0;
	text-align: right;
}

/* *** Sidebar Styles *** */

#sidebar h3 {
	font-size: 24px;
	font-weight: normal;
}

#sidebar ul {
	line-height: 1.8em;
	list-style: none;
	padding-bottom: 20px;
}

#sidebar ul a {
	text-decoration: none;
}

/* *** Comments Styles *** */

#comments {
	margin: 20px 0 0 20px;
}

#comments li {
	margin-bottom: 10px;
}

.commentSep {
	background: url(../images/hr.gif) bottom left no-repeat;
}

/* *** Footer Styles *** */

#footer p {
	padding: 30px 0 0 0;
	text-align: center;
}

.floatR {
	float: right;
	margin-left: 8px;
}

.floatL { 
	float: left;
	margin-right: 8px;
}

.clearfloat {
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}