-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path#42 - Baby.html
53 lines (53 loc) · 956 Bytes
/
#42 - Baby.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
<div>
<span></span>
</div>
<div></div>
<div></div>
<style>
*{
margin:0;
background:#293462;
}
div:nth-child(1) {
width: 100;
height: 200;
position:relative;
top:50;
left:100;
border-bottom-left-radius:50px;
border-top-left-radius:100px;
background: #FE5F55;
-webkit-box-reflect:right;
overflow:hidden;
}
div:nth-child(2) {
width: 20;
height: 10;
position:fixed;
top:220;
left:180;
border-bottom-left-radius:100px;
border-top-left-radius:100px;
background: #FFF1C1;
-webkit-box-reflect:right;
}
div:nth-child(3) {
width: 60;
height: 60;
position:fixed;
top:140;
left:120;
border-radius:50%;
background: #FFF1C1;
-webkit-box-reflect:right 40px;
}
span {
width: 100;
height: 100;
position:absolute;
top:-50;
border-radius:50%;
background: #FFF1C1;
-webkit-box-reflect:right 40px;
}
</style>