-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjumpJack.css
More file actions
65 lines (53 loc) · 791 Bytes
/
jumpJack.css
File metadata and controls
65 lines (53 loc) · 791 Bytes
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
html, body{
margin: 0px;
}
.game{
position: relative;
text-align: center;
line-height: 2em;
font-size: 1.5em;
}
.background{
background: rgb(52, 166, 251);
border-spacing: 0px;
table-layout: fixed;
}
.background td{
padding: 0px;
}
.wall{
background: grey;
}
.lava{
background: crimson;
border-radius: 100px;
}
.rubber{
background: white;
}
.actor{
position: absolute;
}
.player{
background: yellow;
border-radius: 500px;
box-shadow: -4px -7px 8px white, 4px -7px 8px white;
}
.medal{
background: white;
border-radius: 500px;
color: red;
}
.lost .player{
background: rgb(160, 64, 64);
}
.won .player{
box-shadow: -0px -0px 9px 9px white;
}
.textLayer{
position: absolute;
top: 0px;
left: 0px;
color: black;
z-index: 10000;
}