aboutsummaryrefslogtreecommitdiff
path: root/src/spectate/style.css
blob: c391020dd98f730f8a71020ad3d9e47e1d7b5179 (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
* {
    color: white;
}
body {
    padding: 0px;
    margin: 0px;
    background-color: black;

    width: 100dvw;
    height: 100dvh;
    display: flex;
    flex-direction: row;
    overflow-y: hidden;
}

canvas {
    object-fit: contain;
    width: 100%;
    height: 100%;
}
#board {
    width: 60%;
    height: 100%;
}
#side {
    width: 30%;
    height: 100%;
}
#info {
    width: 100%;
    height: 30%;
    overflow-y: scroll;
}
#scoreboard {
    width: 100%;
    height: 30%;
    overflow-y: scroll;
}
#chat {
    width: 100%;
    height: 40%;
    overflow-y: scroll;
}