-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathBaby.html
More file actions
43 lines (42 loc) · 733 Bytes
/
Baby.html
File metadata and controls
43 lines (42 loc) · 733 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
<div a>
<div b></div>
<div c></div>
</div>
<style>
body {
background: #293462;
display: flex;
align-items: center;
justify-content: center;
}
[a] {
background: #fe5f55;
width: 200;
height: 200;
clip-path: inset(0 round 100px 100px 50px 50px);
}
[b],
[c] {
background: #fff1c1;
position: relative;
}
[b] {
border-radius: 50%;
top: 90;
left: 20;
width: 60;
height: 60;
box-shadow: 4px -115px 0 16px #fff1c1;
-webkit-box-reflect: right 40px;
}
[c] {
background: #fff1c1;
width: 20;
height: 10;
border-radius: 100px 0 0 100px;
position: relative;
top: 110;
left: 80;
-webkit-box-reflect: right 0px;
}
</style>