-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
55 lines (50 loc) · 829 Bytes
/
index.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
#dodger {
background-color: white;
height: 20px;
position: absolute;
width: 40px;
}
#game {
background-color: #111;
height: 400px;
margin: 0 auto;
overflow: hidden;
position: relative;
text-align: center;
width: 400px;
}
#start {
color: white;
font-size: 4rem;
position: relative;
text-decoration: none;
top: 4rem;
}
.rock {
width: 20px;
height: 20px;
background: tan;
position: absolute;
}
.rock:before {
content: "";
border-bottom: 6px solid tan;
border-left: 6px solid #111;
border-right: 6px solid #111;
height: 0;
left: 0;
position: absolute;
top: 0;
width: 9px;
}
.rock:after {
content: "";
border-left: 6px solid #111;
border-right: 6px solid #111;
border-top: 6px solid tan;
bottom: 0;
height: 0;
left: 0;
position: absolute;
width: 9px;
}