-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path#72-Sheep.htm
82 lines (73 loc) · 1.58 KB
/
#72-Sheep.htm
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
<div a></div>
<div b></div>
<div c></div>
<div d></div>
<div e>
<div f>
</div>
<style>
body {
background: #243D83;
}
div {
position: absolute;
}
[a],
[b],
[c],
[d] {
width: 60px;
height: 50px;
background: #6592CF;
border-radius: 50%;
left: 42.5%;
top: 21.5%;
-webkit-box-reflect: below 70px
}
[b] {
left: 32.5%;
top: 28.2%;
transform: rotate(-45deg);
-webkit-box-reflect: below 63px
}
[c] {
left: 27.5%;
top: 41.5%;
transform: rotate(-90deg);
-webkit-box-reflect: below 70px
}
[d] {
left: 32.5%;
top: 54.9%;
transform: rotate(-135deg);
-webkit-box-reflect: below 63px
}
[e] {
width: 80px;
height: 55px;
background: #6592CF;
top: 44.3%;
left: 40%
}
[f] {
width: 60px;
height: 42px;
background: #243D83;
border-radius: 0 0 30px 30px;
left: 10
}
[f]:before,
[f]:after {
content: '';
position: absolute;
width: 10px;
height: 10px;
background: #6592CF;
border-radius: 50%;
left: 15;
top: -3
}
[f]:after {
left: 35
}
</style>