-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (41 loc) · 831 Bytes
/
style.css
File metadata and controls
46 lines (41 loc) · 831 Bytes
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
body {
margin: 0;
background-color: #0a0a0a;
color: #eeeeee;
font-family: 'Courier New', Courier, monospace;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
overflow: hidden;
}
#info-panel {
background-color: #1a1a1a;
border: 1px solid #333;
border-radius: 4px;
width: 800px;
padding: 15px 20px;
box-sizing: border-box;
text-align: center;
margin-bottom: 20px;
box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
h1 {
margin: 0 0 10px 0;
font-size: 22px;
letter-spacing: 2px;
color: #ffffff;
}
p {
margin: 5px 0;
font-size: 14px;
color: #aaaaaa;
}
#game-container {
box-shadow: 0 0 30px rgba(0,0,0,0.8);
border: 2px solid #222;
}
canvas {
display: block;
}