-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (58 loc) · 919 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
body{
background: #33ccff;
}
.game{
background: #33ccff;
clear: both;
}
.header{
float: left;
}
.score, .level{
float: right;
}
table {
border-spacing: 0;
border-width: 0px;
/*border-collapse: collapse;*/
margin: auto;
}
.block{
background: #ffffff;
border-style: solid;
border-width: 1px;
border-color: #000000;
height: 30px;
width: 45px;
float: left;
padding: 1px;
margin: 0px;
}
#inactive{/*id takes precedence over class*/
background: #33ccff;
border-width: 0px;
height: 30px;
width: 0%;
float: left;
padding: 0px;
}
.buttons{
margin: auto;
}
button{
margin: 2px;
height: 30px;
width: 90px;
border-radius: 8px;
padding: 2px;
}
.levelUpButton{
display: none;
background: #3ddf52;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}