blob: 5d15e9ac969b54b8b9466a470334cb9938d7210c (
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
50
51
52
53
54
55
56
57
58
59
|
* {
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;
}
.message {
margin: 2px;
}
.message.chat {
color: rgb(187, 187, 187);
}
.message.die {
color: rgb(255, 136, 136);
}
.message.win {
color: rgb(138, 255, 128);
}
.message.tie {
color: rgb(255, 221, 128);
}
|