-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path#102 - One Piece.html
119 lines (117 loc) · 1.71 KB
/
#102 - One Piece.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<div b b1 />
<div b b2 />
<div b b3 />
<div b b4 />
<div c />
<div d />
<div e />
<div f />
<style>
*{
background:#000000;
margin:0;
}
[b] {
position:relative;
background:white;
width:25;
height:20;
}
[b]:after {
content:'';
position:absolute;
background:white;
width:25;
height:25;
top:-10;
left:-13;
border-radius:50px;
}
[b]:before {
content:'';
position:absolute;
background:white;
width:25;
height:25;
top:5;
left:-13;
border-radius:50px;
}
[b1] {
top:101;
left:109;
transform: rotate(45deg);
}
[b2] {
top:69;
left:68.5;
transform: rotate(-90deg);
}
[b3] {
top:110.5;
left:111;
transform: rotate(-90deg);
}
[b4] {
top:69;
left:68.5;
transform: rotate(-90deg);
}
[c] {
position:fixed;
width:100;
height:150;
background:white;
transform: rotate(-45deg);
top:-44;
left:53;
border-radius:50px;
}
[d] {
position:fixed;
width:40;
height:50;
background:#000000;
transform: rotate(-30deg);
top:80;
left:30;
border-radius:50%;
}
[e] {
position:fixed;
width:40;
height:50;
background:#000000;
transform: rotate(-120deg);
top:-52;
left:30;
border-radius:50%;
}
[f] {
position:relative;
width:15;
height:20;
background:#FFFFFF;
transform: rotate(60deg);
top:42;
left:-52.5;
}
[f]:before {
position:absolute;
content:'';
width:15;
height:20;
background:#FFFFFF;
top:0;
left:-20;
}
[f]:after {
position:absolute;
content:'';
width:15;
height:20;
background:#FFFFFF;
top:0;
left:-40;
}
</style>