-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (105 loc) · 1.44 KB
/
style.css
File metadata and controls
106 lines (105 loc) · 1.44 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
body {
width: 400px;
height: 650px;
margin: 0 auto;
text-align: center;
font: 20px Arial;
}
span {
display: inline-block;
vertical-align: middle;
line-height: normal;
}
.margin-right-2 {
margin-right: 20px;
}
#title-screen {
padding-top: 50px;
}
#title-list {
list-style: none;
text-align: left;
margin-bottom: 50px;
}
#title-list li {
padding-bottom: 20px;
}
.title-text {
float: left;
margin-right: 30px;
}
.level-select {
width: 20px;
display:inline-block;
text-align: center;
}
.level-select input {
margin: 0 auto;
}
#start-button {
height: 30px;
width: 40%;
border: 1px solid;
font: inherit;
}
#start-button:hover {
background-color: #CCCCCC;
}
#game-screen {
display: none;
}
#game-header {
width: 100%;
height: 50px;
border: 1px solid;
position: relative;
}
#time {
float: left;
width: 70px;
margin-top: 12px;
margin-left: 20px;
}
#pause-button {
margin-left: 180px;
position: absolute;
}
#play-pause {
margin-top: 5px;
}
#score {
float: right;
width: 110px;
margin-top: 12px;
margin-right: 20px;
}
#game-canvas {
border: 1px solid;
}
#game-over {
position: absolute;
display: none;
width: 200px;
margin: -500px 100px 0;
background-color: #CCCCCC;
}
#win {
display: none;
}
#lose {
display: none;
}
#pause-text {
width: 200px;
position: absolute;
display: none;
color: red;
margin: -400px 100px 0;
}
#level-text {
width: 200px;
position: absolute;
display: none;
color: blue;
margin: -500px 100px 0;
}