1/** 2 * This file provides the design styles for the page content. 3 */ 4 5.content .row { 6 > .col-xs-12 { 7 box-shadow: @box-shadow; 8 9 #dokuwiki__content { 10 position: relative; 11 12 &::before { 13 content: ''; 14 position: absolute; 15 top: 0; 16 left: 0; 17 height: @page-header_height; 18 box-sizing: border-box; 19 width: 100%; 20 background-color: @ini_background_page_header; 21 border-bottom: 1px solid @ini_border_light; 22 } 23 24 .msg-area + * { 25 clear: both; 26 padding-top: 1em; // as h1 27 } 28 } 29 } 30} 31 32.main-content > .level2, 33.main-content > .level1, 34.main-content > .level3, 35.main-content > .level4, 36.main-content > .level5, 37.main-content > .level6 { 38 > p, 39 > ul > li .li { 40 a { 41 font-size: inherit; 42 } 43 } 44} 45 46.level1, 47.level2, 48.level3, 49.level4, 50.level5, 51.level6 { 52 line-height: @line-height-default; 53 54 div, p, th, td, textarea, 55 h1, h2, h3, h4, h5, h6, 56 dl, dt, dd, ol, ul, li { 57 line-height: @line-height-default; 58 } 59} 60