summaryrefslogtreecommitdiff
path: root/style/campus.less
blob: 02d912636d56e7aa038da1b55d2c3dff82c7294a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
@import "colors.less";

body[data-page="campus"] #campus-map {
    /* NOTE: you cannot use all CSS properties here on SVG elements.
     * Things like border-radius and box-shadow do not work here. */
    svg {
        .building {
            stroke: @color-campus-building-border;
            stroke-width: 6;
            fill: @color-campus-building-fill;
            opacity: .5;

            &:hover {
                opacity: .7;
                stroke-width: 9;
            }
        }
    }
}

body[data-page="campus"] {
    img.description-picture {
        float: right;
        margin-left: 1em;

        &.small {
        }

        &.large {
        }
    }
}
/* vim: set sw=4 et ts=4: */