-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
85 lines (77 loc) · 1.4 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#game {
display: none;
}
#presentation {
color: white;
}
#square {
position: absolute;
background-image: url('fish.png');
background-size: 50px;
height: 50px;
width: 50px;
border-radius: 50%;
z-index: 1;
}
#wallTop {
position: absolute;
background-image: url('wallTexture.png');
background-repeat: no-repeat;
border-bottom-right-radius: 6px;
border-bottom-left-radius: 6px;
height: 300px;
width: 70px;
top: 0;
right: 0;
z-index: 0;
opacity: 0.9;
}
#wallBottom {
position: absolute;
background-image: url('wallTexture.png');
background-repeat: no-repeat;
border-top-right-radius: 6px;
border-top-left-radius: 6px;
height: 300px;
width: 70px;
bottom: 0;
right: 0;
z-index: 0;
opacity: 0.9;
}
#pointsDiv {
position: fixed;
float: right;
font-size: 25px;
color: white;
z-index: 1;
}
#endGame {
display: none;
color: white;
text-align: center;
margin-top: 100px;
}
#retryButton {
margin-top: 30px;
}
#dogFood {
display: none;
position: absolute;
background-image: url('tortoise.png');
background-size: 50px;
height: 50px;
width: 50px;
border-radius: 50%;
z-index: 0;
}
#seaStar {
display: none;
position: absolute;
background-image: url('seaStar.png');
background-size: 50px;
height: 50px;
width: 50px;
border-radius: 50%;
z-index: 0;
}