Skip to content

Commit ea2000f

Browse files
committed
Merge branch 'addsearch' of github.com:asolkar/onlyblog into addsearch
2 parents 4f322e5 + 2ecd1cd commit ea2000f

File tree

2 files changed

+38
-7
lines changed

2 files changed

+38
-7
lines changed

serene/style.css

+37-7
Original file line numberDiff line numberDiff line change
@@ -23,25 +23,25 @@ body {
2323
font-family : Georgia, "Bitstream Vera Serif", "Times New Roman", serif;
2424
font-size : small;
2525
line-height : 1.7em;
26-
background-color : white;
27-
background : url(images/back.png) top center no-repeat;
2826
margin : 0 0 0 0;
2927
top: 0px;
3028
overflow : auto;
29+
width : 100%;
30+
height : 100%;
3131
}
3232

3333
#shrink_wrapper_shell {
3434
display: block;
3535
/*position : fixed;*/
36-
width : 100%;
37-
height : 100%;
3836
margin : 0 auto;
3937
text-align : center;
38+
background-color : white;
39+
background : url(images/back.png) top center no-repeat;
4040
}
4141
#shrink_wrapper {
4242
position : relative;
43-
display : inline-block;
44-
width : 620px;
43+
display : block;
44+
width : 720px;
4545
margin : 0 auto;
4646
margin-left : auto;
4747
margin-right : auto;
@@ -64,7 +64,7 @@ a:hover {
6464
}
6565

6666
.entry_list {
67-
width : 620px;
67+
width : 720px;
6868
margin : 0 auto;
6969
border-top : 3px solid #eeeeee;
7070
text-align : left;
@@ -256,6 +256,14 @@ a:hover {
256256
margin : 10px;
257257
padding : 5px 10px 5px 10px;
258258
}
259+
.entry h2 {
260+
font-family : "Trebuchet MS", sans-serif;
261+
text-align : left;
262+
font-size : medium;
263+
font-weight : bold;
264+
font-style : italic;
265+
line-height : 1.5em;
266+
}
259267
.entry p {
260268
padding-top : 1em;
261269
}
@@ -266,6 +274,24 @@ a:hover {
266274
font-style : italic;
267275
}
268276

277+
.entry ul,
278+
.entry ol {
279+
list-style-position : outside;
280+
margin-left : 1.4em;
281+
}
282+
283+
.entry li {
284+
padding-left : 0.2em;
285+
padding-bottom : 0.5em;
286+
}
287+
288+
.entry ul {
289+
list-style-type : disc;
290+
}
291+
.entry ol {
292+
list-style-type : decimal;
293+
}
294+
269295
pre {
270296
font-family : monospace;
271297
border : thin dashed #cccccc;
@@ -274,6 +300,10 @@ pre {
274300
padding : 5px 10px 5px 10px;
275301
}
276302

303+
code {
304+
font-family : monospace;
305+
}
306+
277307
/* Serene theme related formatting */
278308
#page_footer {
279309
font-family : "Trebuchet MS", sans-serif;

serene/theme.php

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ function show_page () {
5656

5757
get_post_list();
5858

59+
http_doc_type();
5960
?>
6061
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
6162
<head>

0 commit comments

Comments
 (0)