-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (55 loc) · 944 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
@font-face {
font-family: montserratBold;
src: url("./fonts/Montserrat-Bold.ttf");
}
* {
margin: 0;
padding: 0;
}
html {
height: 100%;
}
body {
width: 100%;
height: 100%;
background: url(./images/background-dark.svg) no-repeat;
background-size: cover;
font-family: Arial, Helvetica, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.game-board {
height: 700px;
}
.top {
display: flex;
justify-content: space-between;
width: 500px;
margin: auto;
}
.score {
font-family: verdana;
font-size: 2em;
position: relative;
color: #ff0000;
font-family: montserratBold;
}
canvas {
display: block;
margin: 20px auto;
border: 2px solid #D0D3D6;
}
h2 {
display: none;
font-size: 70px;
color: #809CD0;
text-align: center;
font-family: montserratBold;
}
.level {
font-size: 30px;
color: #ff0000;
font-family: montserratBold;
}