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