You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.3 KiB
72 lines
1.3 KiB
/**
|
|
* This file provides styles for the general layout structure.
|
|
*
|
|
* @author Anika Henke <anika@selfthinker.org>
|
|
*/
|
|
|
|
body {
|
|
margin: 0 auto;
|
|
}
|
|
#dokuwiki__site {
|
|
margin: 0 auto;
|
|
max-width: __site_width__;
|
|
padding: 1.4em 1em;
|
|
}
|
|
#dokuwiki__site > .site {
|
|
}
|
|
|
|
#dokuwiki__header {
|
|
}
|
|
#dokuwiki__header > .pad {
|
|
}
|
|
#dokuwiki__header .headings {
|
|
float: left;
|
|
}
|
|
#IE6 #dokuwiki__header .headings {
|
|
width: 50%;
|
|
}
|
|
#dokuwiki__header .tools {
|
|
float: right;
|
|
text-align: right;
|
|
}
|
|
#IE6 #dokuwiki__header .tools {
|
|
width: 50%;
|
|
}
|
|
|
|
#dokuwiki__site .wrapper {
|
|
position: relative;
|
|
}
|
|
#IE6 #dokuwiki__site .wrapper,
|
|
#IE7 #dokuwiki__site .wrapper {
|
|
height: 1%;
|
|
}
|
|
|
|
/* show sidebar only in show mode */
|
|
#dokuwiki__aside {
|
|
display: none;
|
|
}
|
|
.mode_show #dokuwiki__aside {
|
|
width: __sidebar_width__;
|
|
float: left;
|
|
position: relative;
|
|
display: block;
|
|
}
|
|
#dokuwiki__aside > .pad {
|
|
margin: 0 1.5em 0 0;
|
|
}
|
|
|
|
/* make content wider when there's no sidebar */
|
|
.mode_show #dokuwiki__content {
|
|
float: right;
|
|
margin-left: -__sidebar_width__;
|
|
width: 100%;
|
|
}
|
|
.mode_show #dokuwiki__content > .pad {
|
|
margin-left: __sidebar_width__;
|
|
}
|
|
|
|
#dokuwiki__footer {
|
|
clear: both;
|
|
}
|
|
#dokuwiki__footer > .pad {
|
|
}
|