xref: /template/sprintdoc/css/area_content.less (revision e0f14d54bb46bc1a33b9c315e7e6ab5d3568aac9)
1/**
2 * This file provides the design styles for the page content.
3 *
4 * @author Jana Deutschlaender <deutschlaender@cosmocode.de>
5 */
6
7.content .row {
8    > .col-xs-12 {
9        box-shadow: @box-shadow;
10
11        #dokuwiki__content {
12            position: relative;
13            z-index: 10;
14
15            &::before {
16                content: '';
17                position: absolute;
18                top: 0;
19                left: 0;
20                z-index: -1;
21                height: @page-header_height;
22                box-sizing: border-box;
23                width: 100%;
24                background-color: @ini_background_page_header;
25                border-bottom: 1px solid @ini_border_light;
26            }
27
28            #plugin__highlightparent {
29                display: block;
30            }
31        }
32    }
33}
34
35
36.main-content > .level2,
37.main-content > .level1,
38.main-content > .level3,
39.main-content > .level4,
40.main-content > .level5,
41.main-content > .level6 {
42    //padding-bottom: 1rem;
43
44    > p, > ul > li .li {
45        a {
46            font-size: inherit;
47        }
48    }
49}
50
51
52.level1,
53.level2,
54.level3,
55.level4,
56.level5,
57.level6 {
58    line-height: @line-height-default;
59
60    div, p, th, td, textarea,
61    h1, h2, h3, h4, h5, h6,
62    dl, dt, dd, ol, ul, li {
63        line-height: @line-height-default;
64    }
65}
66