summaryrefslogtreecommitdiff
path: root/style/campus.less
blob: a3305950378286e6d6e65bb0cb7a26b80ece2e58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@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;
            }
        }
    }
}
/* vim: set sw=4 et ts=4: */