-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path#8 - Forking Crazy.html
67 lines (67 loc) · 1009 Bytes
/
#8 - Forking Crazy.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
61
62
63
64
65
66
67
<div class='leg'></div>
<div class='f1 bt leg'></div>
<div class='f2 bt leg'></div>
<div class='f3 bt leg'></div>
<div class='f4 bt leg'></div>
<div class='f5 bb'></div>
<div class='f5 f6 bb'></div>
<div class='f5 f7 bb'></div>
<div class='leg square bb'></div>
<style>
*{
margin:0;
background:#6592CF;
}
.leg{
background:#060F55;
position:absolute;
width:20;
height:135;
top:225;
left:190;
}
.bt{
border-top-right-radius:50px;
border-top-left-radius:50px;
}
.f1{
top:50;
left:130;
}
.f2{
top:50;
left:170;
}
.f3{
top:50;
left:210;
}
.f4{
top:50;
left:250;
}
.bb{
border-bottom-right-radius:500px;
border-bottom-left-radius:500px;
}
.square{
width:140px;
height:100px;
top:150;
left:130;
}
.f5{
z-index:1;
background:#6592CF;
left:150px;
width:20px;
height:160px;
position:absolute;
}
.f6{
left:190px;
}
.f7{
left:230px;
}
</style>