]> gitweb @ CieloNegro.org - Rakka.git/blob - defaultPages/StyleSheet/Default
bd566ef9130cc5e02fc4fb31bb91f0916099142c
[Rakka.git] / defaultPages / StyleSheet / Default
1 <?xml version="1.0" encoding="utf-8"?>
2 <page xmlns="http://cielonegro.org/schema/Rakka/Page/1.0"
3       type="text/css"
4       isBoring="yes"
5       isTheme="yes">
6   <textData>
7 /* global configuration */
8 * {
9     padding: 0;
10     margin: 0;
11 }
12
13 /* layout */
14
15 .center {
16     position: absolute;
17     
18     overflow: auto;
19
20     top: 20px;
21     right: 15em;
22     left: 15em;
23     bottom: 20px;
24 }
25
26 .left {
27     top: 0em;
28     width: 15em;
29     left: 0;
30     bottom: 0;
31 }
32
33 .right {
34     top: 0em;
35     width: 15em;
36     right: 0;
37     bottom: 0;
38 }
39
40 .header {
41     position: absolute;
42     height: 20px;
43     left: 15em;
44     right: 15em;
45     top: 0;
46 }
47
48 .footer {
49     position: absolute;
50     height: 20px;
51     left: 15em;
52     right: 15em;
53     bottom: 0;
54 }
55
56 .sideBar {
57     position: absolute;
58     overflow: auto;
59 }
60
61 /* spacing */
62 .title {
63     padding: 5px 20px;
64 }
65
66 .title p {
67     margin: 0;
68 }
69
70 .body {
71     padding: 25px 30px;
72 }
73
74 .body h1, .body h2, .body h3, .body h4, .body h5, .body h6 {
75     margin: 5px 0px;
76 }
77
78 .body ul, .body ol {
79     list-style-position: inside;
80     margin: 1em 0;
81 }
82 .body ul ul, .body ul ol, .body ol ul, .body ol ol {
83     margin: 0;
84 }
85
86 .body li {
87     margin: 3px 5px;
88 }
89 .body li li {
90     margin-left: 20px;
91 }
92
93 .body dl {
94     margin: 1em 2em;
95 }
96 .body dt {
97     font-weight: bold;
98 }
99 .body dd {
100     margin-left: 3em;
101     margin-top: 0.1em;
102 }
103 .body dd + dt {
104     margin-top: 0.9em;
105 }
106
107 .sideBar h1 {
108     margin-bottom: 5px;
109     padding: 0px 5px;
110 }
111
112 .sideBar .content {
113     padding: 20px;
114 }
115
116 .sideBar li {
117     padding: 3px;
118 }
119
120 .sideBar ul, .sideBar ol {
121     list-style-type: none;
122     margin-top: 0.4em;
123 }
124
125 .sideBar li + li {
126     margin-top: 0.2em;
127 }
128
129 .sideBar ul + h1 {
130     margin-top: 1.2em;
131 }
132
133 /* color and text */
134 * {
135     font-family: sans-serif;
136 }
137
138 body {
139     background-color: white;
140     color: black;
141
142     line-height: 1.3;
143 }
144
145 h1, h2, h3, h4, h5, h6 {
146     font-weight: normal;
147 }
148
149 hr {
150     border-color: #bbbbbb;
151     border-width: 1px;
152     border-style: dashed;
153 }
154
155 .title {
156     background-color: #fafafa;
157
158     border-color: #cccccc;
159     border-width: 0 0 1px 0;
160     border-style: solid;
161
162     font-size: 1.2em;
163 }
164
165 .body h1 {
166     font-size: 200%;
167 }
168 .body h2 {
169     font-size: 150%;
170 }
171 .body h3 {
172     font-size: 130%;
173 }
174 .body h4 {
175     font-size: 110%;
176 }
177 .body h5 {
178     font-size: 90%;
179 }
180 .body h1, .body h2, .body h3, .body h4, .body h5 {
181     background-color: #fafafa;
182     
183     border-color: #dddddd;
184     border-width: 1px;
185     border-style: solid;
186
187     padding: 0 10px;
188 }
189
190 a {
191     color: #008800;
192     text-decoration: none;
193 }
194
195 .header, .footer, .sideBar {
196     background-color: #eeeeee;
197 }
198
199 .sideBar h1 {
200     font-size: 120%;
201 }
202 .sideBar h1, .sideBar h2, .sideBar h3, .sideBar h4, .sideBar h5 {
203     font-weight: normal;
204
205     color: #555555;
206     background-color: #fafafa;
207
208     border-color: #dddddd white white #dddddd;
209     border-width: 1px;
210     border-style: solid;
211 }
212
213 .sideBar .date {
214     font-size: 70%;
215     white-space: nowrap;
216 }
217
218 .sideBar .trackbacks p {
219     font-size: 90%;
220 }
221
222 .sideBar .outline li {
223     list-style-type: circle;
224     margin-left: 1em;
225     
226     padding: 0;
227     background-color: black;
228 }
229 .sideBar .outline li li {
230     list-style-type: disc;
231 }
232 .sideBar .outline li li li {
233     list-style-type: square;
234 }
235
236 p {
237     margin: 0 0 0.8em 0;
238 }
239
240 /* float */
241 h1, h2, h3, h4, h5, h6 {
242     clear: both;
243 }
244
245 /* image */
246 img {
247     border-width: 0;
248 }
249
250 .inlineImage {
251     margin-top: 5px;
252     margin-bottom: 5px;
253 }
254
255 .leftFloat {
256     float: left;
257     margin-right: 25px;
258 }
259
260 .rightFloat {
261     float: right;
262     margin-left: 25px;
263 }
264
265 .imageFrame {
266     background-color: #eeeeee;
267     padding: 5px;
268
269     border-color: #cccccc;
270     border-width: 1px;
271     border-style: solid;
272
273     margin-top: 5px;
274     margin-bottom: 10px;
275 }
276
277 .imageFrame p {
278     margin: 0;
279 }
280
281 .imageData {
282     text-align: center;
283 }
284
285 .imageCaption {
286     margin-top: 3px;
287 }
288 </textData>
289 </page>