-
Notifications
You must be signed in to change notification settings - Fork 0
/
8.Forking-Crazy.html
71 lines (70 loc) · 1.33 KB
/
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
68
69
70
71
<div class="bg">
<div class="up"></div>
<div class="up left-margin"></div>
<div class="up left-margin"></div>
<div class="up left-margin"></div>
</div>
<div id="striped"></div>
<div class="bg darker">
<div class="circle left-margin"></div>
<div class="circle left-margin"></div>
<div class="circle left-margin"></div>
</div>
<div id="bottom"></div>
<div id="stick"></div>
<style>
body {
padding: 42px 122px 0;
background: #6592CF;
}
.bg {
font-size: 0;
width: 140px;
height: 20px;
}
.darker {
background: #060F55;
}
.left-margin {
margin-left: 20px;
}
#striped {
width: 140px;
height: 70px;
background: repeating-linear-gradient(
to right,
#060F55 0px,
#060F55 20px,
#6592CF 20px,
#6592CF 40px);
}
#bottom {
width: 140px;
height: 90px;
background: #060F55;
border-radius: 0 0 100px 100px;
}
.up {
width: 20px;
height: 20px;
background: #060F55;
border-radius: 20px 20px 0 0;
display: inline-block;
}
.circle {
width: 20px;
height: 20px;
background: #6592CF;
border-radius: 0 0 20px 20px;
display: inline-block;
}
#stick {
width: 20px;
height: 60px;
z-index: 1;
position: relative;
top: -10px;
background: #060F55;
margin-left: 60px;
}
</style>