-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
86 lines (74 loc) · 1.21 KB
/
main.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
html,
body {
min-height: 100%;
height: 100%
}
h1 {
font-size: 60px;
}
body {
margin: 0;
font-family: monospace;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
overflow: hidden;
}
button {
width: 160px;
padding: 10px 20px;
border-radius: 10px;
border: none;
font-family: inherit;
display: flex;
align-items: center;
justify-content: center;
}
#canvasContainer {
height: 100%;
}
#headerContainer {
width: 100vw;
height: 10vh;
display: flex;
align-items: center;
justify-content: space-around;
flex-direction: row;
background: rgba(82, 115, 77, 0.6);
}
#menuContainer {
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background: rgba(145, 199, 136, 0.75);
}
#menuContainer button {
margin-bottom: 10px;
}
#toolbarContainer {
display: flex;
right: 10px;
bottom: 10px;
font-size: 24px;
}
#toolbarContainer button {
width: 40px;
margin-left: 15px;
}
.aim {
font-size: 72px;
margin: 0;
padding: 0;
line-height: 0;
}
.position-absolute {
position: absolute;
}
.hidden {
display: none !important;
}