1/** 2 * This file provides the design styles for the main-content. 3 * 4 * @author Jana Deutschlaender <deutschlaender@cosmocode.de> 5 */ 6 7 8#dokuwiki__content.main-content { 9 img { 10 display: inline-block; 11 } 12 13/* + + + source block + + + */ 14 .code { 15 margin-top: @grid; 16 } 17} 18 19 20/* + + + + + + + + + + + + + + + + + + + + + + + + + + */ 21/* min-width: 1440px */ 22 23@media @screen_min-xlg { 24 #dokuwiki__content.main-content { 25 p, a, 26 li, dl, 27 td, th, 28 label, 29 button { 30 font-size: .88rem; 31 line-height: 140%; 32 33 * { 34 font-size: inherit; 35 line-height: inherit; 36 } 37 } 38 39 .code { 40 font-size: .75rem; 41 } 42 } 43} 44 45 46/* + + + + + + + + + + + + + + + + + + + + + + + + + + */ 47/* max-width: 1199px */ 48 49@media @screen_max-xlg { 50 #dokuwiki__content.main-content { 51 p, a, 52 li, dl, 53 td, th, 54 label, 55 button { 56 font-size: 1rem; 57 line-height: 140%; 58 59 * { 60 font-size: inherit; 61 line-height: inherit; 62 } 63 } 64 65 .code { 66 font-size: .94rem; 67 } 68 } 69} 70