1/** 2 * This file provides the design styles for the page content. 3 * 4 * @author Jana Deutschlaender <deutschlaender@cosmocode.de> 5 */ 6 7.content .row { 8 > .col-xs-12 { 9 box-shadow: @box-shadow; 10 11 #dokuwiki__content { 12 position: relative; 13 z-index: 10; 14 15 &::before { 16 content: ""; 17 position: absolute; 18 top: 0; 19 left: 0; 20 z-index: -1; 21 height: 2.6rem; 22 width: 100%; 23 background-color: @background_page-header; 24 border-bottom: 1px solid @color-border-light; 25 } 26 27 #plugin__highlightparent { 28 display: block; 29 } 30 } 31 } 32} 33 34.structaggregation { 35 td, 36 th { 37 line-height: 125%; 38 39 a { 40 41 line-height: 125%; 42 } 43 } 44 45 > a.export { 46 line-height: 135%; 47 padding-top: .5em; 48 } 49} 50 51.dokuwiki .structaggregation a.export { 52 padding-top: .3em; 53} 54 55.main-content > .level2, 56.main-content > .level1, 57.main-content > .level3, 58.main-content > .level4, 59.main-content > .level5, 60.main-content > .level6 { 61 padding-bottom: 1rem; 62 63 > p, > ul > li .li { 64 a { 65 font-size: inherit; 66 } 67 } 68} 69 70 71.level1, 72.level2, 73.level3, 74.level4, 75.level5, 76.level6 { 77 line-height: 125%; 78 79 div, p, th, td, textarea, 80 h1, h2, h3, h4, h5, h6, 81 dl, dt, dd, ol, ul, li { 82 line-height: 125%; 83 } 84} 85