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 box-sizing: border-box; 23 width: 100%; 24 background-color: @ini_background_page_header; 25 border-bottom: 1px solid @ini_border_light; 26 } 27 28 #plugin__highlightparent { 29 display: block; 30 } 31 } 32 } 33} 34 35 36 37.structaggregation { 38 td, 39 th { 40 line-height: @line-height-default; 41 42 a { 43 44 line-height: @line-height-default; 45 } 46 } 47 48 > a.export { 49 line-height: 135%; 50 padding-top: .5em; 51 } 52} 53 54.dokuwiki .structaggregation a.export { 55 padding-top: .3em; 56} 57 58.main-content > .level2, 59.main-content > .level1, 60.main-content > .level3, 61.main-content > .level4, 62.main-content > .level5, 63.main-content > .level6 { 64 //padding-bottom: 1rem; 65 66 > p, > ul > li .li { 67 a { 68 font-size: inherit; 69 } 70 } 71} 72 73 74.level1, 75.level2, 76.level3, 77.level4, 78.level5, 79.level6 { 80 line-height: @line-height-default; 81 82 div, p, th, td, textarea, 83 h1, h2, h3, h4, h5, h6, 84 dl, dt, dd, ol, ul, li { 85 line-height: @line-height-default; 86 } 87} 88