-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlevel_8.css
74 lines (58 loc) · 938 Bytes
/
level_8.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
body {
background: url(./ext/background.png);
font-family: "Trebuchet MS", Helvetica, sans-serif;
}
h1, p{
text-align: right;
}
#instructions{
float: left;
}
#logo{
position: absolute;
bottom: 0;
right: 0;
}
#logo img{
width: 250px;
}
#monster_template{
display: none;
}
.monster{
width: 50px;
height: 50px;
position: absolute;
border-radius: 50% 50%;
border: 1px solid #EEE;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}
.eye{
background: #FFF;
width: 30%;
height: 40%;
position: absolute;
top: 20%;
border-radius: 50% 50%;
box-shadow: inset 0 0 6px rgba(50, 50, 50, 0.4);
overflow: hidden;
}
.left_eye{
left: 15%;
}
.right_eye{
right: 15%;
}
.eye_ball {
background: #444;
width: 65%;
height: 65%;
position: absolute;
border-radius: 50% 50%;
}
#player{
background: url(./ext/hero.png);
width: 50px;
height: 103px;
position: absolute;
}