blob: 1c378b9f6e614347218c263d01f33d66ff09bba9 (
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
|
/* CSS version 3.0 */
/* Copyright 2007, Matthias Andreas Benkard. */
/*-----------------------------------------------------------------------
* This file is part of The Mulkblog Project.
*
* The Mulkblog Project is free software. You can redistribute it and/or
* modify it under the terms of the Affero General Public License as
* published by Affero, Inc.; either version 1 of the License, or
* (at your option) any later version.
*
* The Mulkblog Project is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Affero General Public License for more details.
*
* You should have received a copy of the Affero General Public
* License in the COPYING file that comes with The Mulkblog Project; if
* not, write to Affero, Inc., 510 Third Street, Suite 225, San
* Francisco, CA 94107 USA.
*-----------------------------------------------------------------------
*/
#MAIN-TITLE {
font-stretch: wider;
font-variant: small-caps;
text-align: center;
}
#MAIN-TITLE a {
text-decoration: none;
}
#MAIN-SUBTITLE {
text-align: center;
}
#MAIN-TITLE-BOX {
}
.JOURNAL-ENTRY-HEADER {
font-size: x-small;
color: #444;
background-color: inherit;
font-weight: lighter;
text-align: left;
}
div.JOURNAL-ENTRY > h2 {
border-bottom: 2px solid #000;
/* font-variant: small-caps; */
}
.JOURNAL-ENTRY > h2 > a {
text-decoration: none;
}
div.JOURNAL-ENTRY {
border: 3px outset #666;
background-color: #f8f8e0;
margin: 1em 0 0 0;
padding: 0 0.3em 0 0.3em;
text-align: justify;
}
div.JOURNAL-ENTRY-BODY p {
text-indent: 1em;
}
img.JOURNAL-ENTRY-PORTRAIT {
margin-right: 6px;
margin-bottom: 6px;
float: left;
}
.JOURNAL-ENTRY-FOOTER {
font-size: small;
padding-top: 0.5em;
text-align: right;
clear: both;
}
.JOURNAL-COMMENTS h2 {
width: 80%;
}
.JOURNAL-COMMENT {
margin-top: 1em;
border: 1px solid #aaa;
padding: 0.5em 0.5em 0.5em 0.5em;
}
.JOURNAL-COMMENT-HEADER {
margin-bottom: 1em;
}
.JOURNAL-COMMENT-BODY {
text-align: justify;
text-indent: 1em;
}
|