-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
55 lines (55 loc) · 819 Bytes
/
style.css
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
html, body {
background-color: black;
padding: 10pt;
}
#container {
position: relative;
}
#canvasContainer {
position: relative;
display: inline-block;
width: 80%;
max-width: 1000px;
max-height: 100%;
}
#game_area {
outline: solid red 2pt;
width: 100%;
height: 100%;
}
#scoreboard {
outline: solid red 2pt;
color: white;
position: absolute;
right: 0;
top: 0;
bottom: 0;
font: x-large sans-serif;
padding: 2pt;
width: 15%;
}
#winnerMessage {
width: 100%;
text-align: center;
}
#waitingRoomOverlay {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
font-size: xx-large;
font-weight: bold;
color: white;
padding: 50pt;
background-color: rgba(0, 0, 0, 0.5);
}
#credits {
position: absolute;
bottom: 1ex;
font-size: small;
font-weight: normal;
}
#player {
display: none;
}