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
|
.html, body {
background: #000;
color: #FFF;
margin: 0px;
overflow-x: hidden;
}
img {
border: 0;
}
a:link, a:active, a:visited, a:hover {
font-family: Verdana;
font-size: 12px;
color: #FC3;
text-decoration: none;
}
a.title:link, a.title:hover, a.title:active, a.title:visited {
position: absolute;
text-align: center;
width: 100%;
height: 25px;
background-image: url(blogthon_img/title_background.png);
font-family: Verdana;
font-weight: bold;
font-size: 18px;
color: #FC3;
}
.screen {
position: relative;
margin: auto;
top: 30px;
}
.content { /* Container for entrytitle and entry */
margin-left: 15px;
}
.entrytitle {
font-family: Verdana;
font-weight: bold;
font-size: 14px;
color: #335599;
text-decoration: underline;
}
a.entrytitle:link, a.entrytitle:hover, a.entrytitle:visited, a.entrytitle:active {
font-family: Verdana;
font-weight: bold;
font-size: 12px;
color: #335599;
text-decoration: underline;
}
.entry {
font-family: Verdana;
font-size: 12px;
color: #FFF;
margin: 15px;
width: 600px;
}
.sidebar {
margin-right: 15px;
margin-left: 20px;
margin-bottom: 20px;
float: right;
}
.sidebarentry {
font-family: Verdana;
font-size: 12px;
color: #5577BB;
text-align: center;
padding-left: 8px;
padding-right: 8px;
background: #111;
}
a.comment:link, a.comment:hover, a.comment:active, a.comment:visited {
font-family: Helvetica;
font-size: 10px;
}
input, textarea {
font-family: Verdana;
font-size: 10px;
display: block;
width: 300px;
background: #333;
color: #FFF;
border: thin dotted;
}
input#submit {
width: 120px;
}
# vim: set tw=0 ts=4:
|