-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
106 lines (106 loc) · 1.91 KB
/
styles.css
File metadata and controls
106 lines (106 loc) · 1.91 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
a {
color: #fff;
text-decoration: underline;
}
a:visited {
color: #fff;
}
a:hover, a:active {
color: #ffd700;
}
body {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: #222;
}
#game-container {
display: flex;
align-items: flex-start;
height: 800px;
position: relative;
gap: 64px;
}
canvas {
border: 2px solid #fff;
}
#disclaimer {
position: absolute;
top: 10px;
left: 10px;
color: white;
font-family: Arial;
font-size: 12px;
}
#controls-box {
background: rgba(30,30,30,0.95);
color: #fff;
font-family: Arial, sans-serif;
font-size: 14px;
border: 1px solid #888;
border-radius: 8px;
padding: 16px 20px;
min-width: 180px;
box-shadow: 0 2px 8px #0008;
margin-top: auto;
margin-bottom: auto;
}
#controls-box h3 {
margin-top: 0;
font-size: 16px;
margin-bottom: 10px;
text-align: center;
letter-spacing: 1px;
}
#controls-box ul {
padding-left: 18px;
margin: 0;
}
#controls-box li {
margin-bottom: 6px;
}
#legend-box {
background: rgba(30,30,30,0.95);
color: #fff;
font-family: Arial, sans-serif;
font-size: 14px;
border: 1px solid #888;
border-radius: 8px;
padding: 16px 20px;
min-width: 180px;
box-shadow: 0 2px 8px #0008;
margin-top: auto;
margin-bottom: auto;
}
#legend-box h3 {
margin-top: 0;
font-size: 16px;
margin-bottom: 10px;
text-align: center;
letter-spacing: 1px;
}
#legend-box ul {
padding-left: 18px;
margin: 0;
}
#legend-box li {
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 8px;
}
#legend-box img {
border-radius: 4px;
background: #222;
border: 1px solid #444;
}
#credits {
position: absolute;
bottom: 10px;
left: 10px;
color: white;
font-family: Arial;
font-size: 12px;
}