xref: /template/sprintdoc/css/area_footer.less (revision 659ce8325fa0170b1e088cc33c5a630daa146073)
1/**
2 * This file provides the design styles for the page footer
3 *
4 * @author Jana Deutschlaender <deutschlaender@cosmocode.de>
5 */
6
7
8/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
9/* no print */
10
11@media screen {
12    .page-footer {
13        background: @background_page-header;
14        border-top: 1px solid @color-border-light;
15        font-size: @font-size-default;
16        padding: @margin-small (@margin-big - .5);
17        text-align: right;
18
19        bdi {
20            font-weight: bold;
21        }
22    }
23
24    #dokuwiki__footer {
25
26        .main-footer {
27            position: relative;
28            z-index: 10;
29            box-sizing: border-box;
30            background-color: @color-site-bg;
31        }
32
33        p {
34            font-size: @font-size-default;
35            margin: 0;
36        }
37    }
38}
39
40
41/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
42/* min-width: 1024px */
43
44@media @screen_min-md {
45    #dokuwiki__footer {
46        .col-xs-12 {
47            float: right;
48            width: 100%;
49        }
50
51        .main-footer {
52            padding: @margin-default 0;
53        }
54    }
55
56    .showSidebar {
57        #dokuwiki__footer {
58             .col-xs-12 {
59                 width: 73%;
60            }
61        }
62    }
63    .wide-content {
64        #dokuwiki__footer {
65            .col-xs-12 {
66                width: auto;
67                float: none;
68            }
69        }
70        &.showSidebar{
71            #dokuwiki__footer {
72                .col-xs-12 {
73                    margin-left: @margin-big;
74                }
75            }
76        }
77    }
78}
79
80
81/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
82/* max-width: 1023px */
83
84@media @screen_max-md {
85    #dokuwiki__footer {
86        .main-footer {
87            padding: @margin-default (@margin-big - .5);
88        }
89    }
90}
91