xref: /template/sprintdoc/css/area_footer.less (revision 1ac428716aa40f666c613dcce50e5cb4bd615f03)
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    #dokuwiki__footer {
13        .main-footer {
14            position: relative;
15            box-sizing: border-box;
16        }
17
18        p {
19            font-size: @font-size-default;
20        }
21
22        bdi {
23            font-weight: bold;
24        }
25    }
26}
27
28
29/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
30/* min-width: 1024px */
31
32@media @screen_min-md {
33    #dokuwiki__footer {
34
35        .col-xs-12 {
36            float: right;
37            width: 73%;
38        }
39
40        .main-footer {
41            padding: @margin-default 0;
42        }
43    }
44}
45
46
47/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
48/* max-width: 1023px */
49
50@media @screen_max-md {
51    #dokuwiki__footer {
52
53        .main-footer {
54            padding: @margin-default (@margin-big - .5);
55        }
56    }
57}
58