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: @page-header_height; 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 35 36.structaggregation { 37 td, 38 th { 39 line-height: @line-height-default; 40 41 a { 42 43 line-height: @line-height-default; 44 } 45 } 46 47 > a.export { 48 line-height: 135%; 49 padding-top: .5em; 50 } 51} 52 53.dokuwiki .structaggregation a.export { 54 padding-top: .3em; 55} 56 57.main-content > .level2, 58.main-content > .level1, 59.main-content > .level3, 60.main-content > .level4, 61.main-content > .level5, 62.main-content > .level6 { 63 //padding-bottom: 1rem; 64 65 > p, > ul > li .li { 66 a { 67 font-size: inherit; 68 } 69 } 70} 71 72 73.level1, 74.level2, 75.level3, 76.level4, 77.level5, 78.level6 { 79 line-height: @line-height-default; 80 81 div, p, th, td, textarea, 82 h1, h2, h3, h4, h5, h6, 83 dl, dt, dd, ol, ul, li { 84 line-height: @line-height-default; 85 } 86} 87