-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
53 lines (44 loc) · 854 Bytes
/
style.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
body {
margin: 0px;
font-family: sans-serif;
}
#game {
background: #353336;
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#game-canvas {
display: block;
border-radius: 5px;
}
.game-header {
padding-top: 1vmin;
padding-bottom: 1vmin;
display: flex;
justify-content: space-between;
}
.game-score {
padding: 10px 15px;
min-width: 160px;
height: 50px;
background: #121214;
border-radius: 5px;
display: flex;
justify-content: center;
align-items: center;
}
.score-count{
font-size: 3vmin;
color: #D21855;
font-weight: bold;
}
.canvas-wrapper {
background-color: #161618;
border-radius: 5px;
border: 10px solid #161618;
box-shadow: 0px 0px 40px 10px #161618;
}