-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (43 loc) · 730 Bytes
/
style.css
File metadata and controls
43 lines (43 loc) · 730 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
canvas {
color: red;
border: 3px solid rgb(30, 30, 30);
border-radius: 5px;
background-color: rgb(55, 55, 55);
}
body {
background-color: rgb(40, 40, 40);
color: rgb(130, 130, 130);
font-family: sans-serif;
}
.main{
display: flex;
flex-wrap:wrap;
justify-content: center;
}
#gameCanvas{
width:800px;
height:800px;
margin:10px;
}
#statistics{
margin:10px;
}
.stat-value{
font-size: 15px;
padding: 5px;
display: inline-block;
vertical-align: middle;
}
.stat-title{
margin:5px;
font-size: 30px;
font-style: bold;
display: inline-block;
}
h1{
text-align: center;
font-size: 36pt;
margin: 5px;
padding: 5px;
background:black;
}