1/* header */ 2#dokuwiki__header { 3 position: fixed; 4 z-index: 102; 5 top: 0; 6 width: 100%; 7 max-height: 40px; 8 9 h1 { 10 display: inline-block; 11 width: 50%; 12 text-align: center; 13 } 14 div.left { 15 width: 25%; 16 float: left; 17 /* trick for keep width when aside is deactivated */ 18 min-height: 1px; 19 } 20 div.right { 21 width: 25%; 22 float: right; 23 text-align: right; 24 } 25 div.search { 26 float: right; 27 } 28} 29 30/* nav */ 31.sidebar { 32 position: fixed; 33 z-index: 104; 34 width: @ini_sidebar_width; 35 max-width: 66%; 36 height: 100%; 37} 38 39#dokuwiki__aside { 40 left: 0; 41} 42#dokuwiki__tools { 43 right: 0; 44} 45#sidebar_bg { 46 position: fixed; 47 z-index: 103; 48 width: 100%; 49 height: 100%; 50} 51#to_top { 52 position: fixed; 53 z-index: 101; 54 right: 10px; 55 bottom: 10px; 56} 57 58/* content */ 59.wrapper { 60 margin: 0 auto; 61 max-width: @ini_body_width; 62} 63 64/* footer */ 65