xref: /dokuwiki/lib/styles/all.css (revision 99e7bfd4c733d81cd01dd2d97e10bb4dda62df66)
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    font-size: 0;
9    line-height: 0;
10    height: 0;
11    overflow: hidden;
12}
13
14div.no {
15    display: inline;
16    margin: 0;
17    padding: 0;
18}
19
20.hidden {
21    display: none;
22}
23
24/* image alignment */
25.medialeft {
26    float: left;
27}
28.mediaright {
29    float: right;
30}
31.mediacenter {
32    display: block;
33    margin-left: auto;
34    margin-right: auto;
35}
36
37/* table cell alignment */
38.leftalign   { text-align: left;   }
39.centeralign { text-align: center; }
40.rightalign  { text-align: right;  }
41
42/* underline */
43em.u {
44    font-style: normal;
45    text-decoration: underline;
46}
47em em.u {
48    font-style: italic;
49}
50