-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path#72 - Sheep.html
60 lines (60 loc) · 1.02 KB
/
#72 - Sheep.html
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
<div a class='ball'></div>
<div b class='ball'></div>
<div c class='ball'></div>
<div d class='ball'></div>
<div e></div>
<div f></div>
<style>
*{
background:#243D83;
}
.ball{
position:absolute;
top:65;
left:170;
width: 60px;
height: 50px;
background:#6592CF;
border-radius:50%;
-webkit-box-reflect:below 70px;
z-index:5;
}
[b]{
top:85;
left:210;
-webkit-box-reflect:below 63px;
transform:rotate(45deg)
}
[c]{
top:125;
left:230;
-webkit-box-reflect:below 70px;
transform:rotate(90deg)
}
[d]{
top:85;
left:130;
-webkit-box-reflect:below 63px;
transform:rotate(-45deg)
}
[e]{
position:absolute;
top:90;
left:150;
width: 60px;
height: 65px;
background:#243D83;
border-radius:0 0 50px 50px;
border:20px solid #6592CF;
}
[f]{
position:absolute;
top:130;
left:185;
width: 10px;
height: 10px;
background:#6592CF;
border-radius:50%;
-webkit-box-reflect:right 10px;
}
</style>