-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
47 lines (41 loc) · 756 Bytes
/
Copy pathstyles.css
File metadata and controls
47 lines (41 loc) · 756 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
47
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0;
height: 100vh;
background-color: black;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
canvas {
background-color: grey;
}
.next-container {
display: flex;
flex-direction: column;
align-items: center;
margin-right: 100px;
height: 60vh;
}
.score-container {
display: flex;
flex-direction: column;
align-items: center;
margin-left: 100px;
height: 60vh;
}
.left-stats-container {
display: flex;
flex-direction: column;
align-items: center;
margin-right: 100px;
min-width: 100px;
height: 60vh;
}
h1 {
color: white;
}
.big-number {
font-size: 35px;
}