-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
68 lines (58 loc) · 1.11 KB
/
styles.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
*{
margin : 0;
padding : 0;
border : 0;
box-sizing : border-box;
}
body{
padding-left : 5px;
padding-right: 5px;
padding-top: 10px;
display: flex;
background-color: rgb(90, 219, 255);
flex-direction: column;
justify-content: center;
align-items: center;
}
.game{
display: flex;
background-color: rgb(90, 219, 255);
flex-direction: column;
justify-content: center;
align-items: center;
}
canvas{
background-repeat: none;
background-size: cover;
max-width: 100%;
max-height:100%;
}
img{
display : none;
}
.controls{
margin-bottom: 8px;
padding-left: 5px;
padding-right: 5px;
display: flex;
justify-content: space-around;
width: 100%;
align-items: center;
}
.scorebar{
font-family: 'Kdam Thmor Pro', sans-serif;
color : white;
margin-left: auto;
}
.lifeBar{
font-family: 'Kdam Thmor Pro', sans-serif;
color : white;
margin-right: auto;
}
.leaderboard{
text-align: center;
margin-top: 5px;
color : white;
font-family: 'Kdam Thmor Pro', sans-serif;
font-size: larger;
}