summaryrefslogtreecommitdiffstats
path: root/src/styles/landscape.scss
blob: 0c4f745577ad460cd7120c186f56647ac992bf05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@media (orientation: landscape) {
    body {
        .speedometertop {
            display: block;
        }

        .speedometerbottom {
            display: none;
        }

        .inforow {
            margin-top: 0 !important;
        }

        .car {
            .warning {
                left: 40%;
                top: 50%;
                animation: blink 3s linear infinite;
            }
        }
    }
}