1/** 2 * Basic styles. These styles are needed for basic DokuWiki functions 3 * regardless of the used template. Templates can override them of course 4 */ 5 6div.clearer { 7 clear: both; 8 line-height: 0; 9 height: 0; 10 overflow: hidden; 11} 12 13div.no { 14 display: inline; 15 margin: 0; 16 padding: 0; 17} 18 19.hidden { 20 display: none; 21} 22 23/* image alignment */ 24.medialeft { 25 float: left; 26} 27.mediaright { 28 float: right; 29} 30.mediacenter { 31 display: block; 32 margin-left: auto; 33 margin-right: auto; 34} 35 36/* table cell alignment */ 37.leftalign { text-align: left; } 38.centeralign { text-align: center; } 39.rightalign { text-align: right; } 40 41/* underline */ 42em.u { 43 font-style: normal; 44 text-decoration: underline; 45} 46em em.u { 47 font-style: italic; 48} 49