1/** 2 * This file provides the design styles for the page content. 3 * 4 * @author Jana Deutschlaender <deutschlaender@cosmocode.de> 5 */ 6 7 8.content .row { 9 > .col-xs-12 { 10 box-shadow: @box-shadow; 11 #dokuwiki__content{ 12 position: relative; 13 z-index: 10; 14 &::before{ 15 content: ""; 16 background-color: @background_page-header; 17 border-bottom: 1px solid @color-border; 18 position: absolute; 19 top: 0; left: 0; 20 height: 3rem; width: 100%; 21 z-index: -1; 22 } 23 #meta-box{ 24 display: inline-block; 25 height: 2.05rem; 26 max-width: 40%; 27 float: right; 28 border: 1px solid transparent; 29 } 30 31 #plugin__highlightparent{ 32 display: block; 33 } 34 } 35 } 36} 37