1/**
2 * This file provides styles for the general layout structure.
3 *
4 * @author Anika Henke <anika@selfthinker.org>
5 */
6
7body {
8    margin: 0 auto;
9}
10#dokuwiki__site {
11	margin: 0 auto 0;
12	padding: 0;
13	width: 800px;
14}
15#dokuwiki__site .site {
16}
17
18#dokuwiki__header {
19	margin: 40px 0 0;
20}
21#dokuwiki__header p.blogtitle {
22	text-indent: 180px;
23	font: 3em Georgia, "Times New Roman", Times, serif;
24}
25#dokuwiki__header p.description {
26	text-indent: 180px;
27	font-size: 1.4em;
28}
29
30#dokuwiki__aside {
31    width: 220px;
32    padding: 60px 0 40px;
33    float: left;
34    position: relative;
35    display: block;
36}
37
38/* make content wider when there's no sidebar */
39#dokuwiki__content {
40  width: 540px;
41  margin: 0 auto 0;
42  padding: 0;
43  float: right
44}
45
46#dokuwiki__footer {
47    clear: both;
48}
49