joeni

footer.scss

1
footer {
2
    margin-left: ($header-padding * 2) + $header-width;
3
    padding: 0.5em;
4
    background-color: $uhasselt-color;
5
    color: white;
6
    width: 78%;
7
    position: fixed;
8
    bottom: 0;
9
    img {
10
        vertical-align: middle;
11
        height: 2em;
12
    }
13
14
    @media screen
15
    and (max-device-width: 440px)
16
    and (max-device-height: 800px) {
17
        //and (-webkit-min-device-pixel-ratio: 2) {
18
        position: relative;
19
        margin-left: 0;
20
        width: 100%;
21
        img {
22
            height: 2em;
23
        }
24
    }
25
}
26