-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (71 loc) · 1.21 KB
/
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
71
72
73
74
75
body {
font-family: Helvetica, Arial, sans-serif;
}
h1 {
font-size: 24px;
font-weight: bold;
border-bottom: 3px solid #b7b7b7;
}
p {
font-size: 11px;
}
.wrapper {
padding: 5px;
background: #e1e1e1;
width: 510px;
margin: 50px auto;
}
#wam-game {
background: #78b73b;
height: 300px;
width: 500px;
display: block;
position: relative;
margin: 0 auto;
border: 1px solid #3b5a1d;
}
.wam-pesky-mole,
.wam-pesky-mole-dead {
width: 125px;
height: 88px;
background: url('images/mole4.png') no-repeat;
position: absolute;
display: block;
cursor: pointer;
z-index: 10;
}
.wam-pesky-mole-dead {
background: url('images/mole-dead8.png') no-repeat;
}
.wam-scoreboard {
width: 200px;
line-height: 28px;
position: absolute;
top: 10px;
left: 0;
background: #3b5a1d;
font-size: 13px;
letter-spacing: 1px;
font-weight: bold;
text-transform: uppercase;
color: #fff;
font-family: arial;
}
.wam-startScreen {
height: 100%;
width: 100%;
background: url('images/startScreen.png');
cursor: pointer;
text-indent: -9999px;
z-index: 20;
}
.wam-endScreen {
position: absolute;
top: 100px;
left: 100px;
height: 68px;
width: 308px;
background: url('images/endScreen.png');
text-indent: -9999px;
cursor: pointer;
}