aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/landscape.scss
blob: 0eace9f2267522b3ff5fde9f663f78c90733c801 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
@media all {

    html {
        background-image: url('../images/horizontal_background.png');
    }

    body {

        .top{
            width: $header_size;
            height: 100%;
            flex-direction: column;

            .appsContainer {
                flex-direction: column;
                .button {
                    border-width: 1px 0 1px 0;
                    order: 2;
                    display: flex;
                    align-items: center;
                    .label {
                        display: none;
                    }
                }
            }

            .infoContainer {
                border-width: 1px 0 1px 0;
                width: $header_size;
                height: 200px;
                order: 1;
            }

            .statusContainer {
                width: 100%;
                height: 60px;
                flex-direction: row;
                align-items: center;
                order: 0;

            }
        }

        .bottom {
            display: none;
        }

    }
}