-
Notifications
You must be signed in to change notification settings - Fork 0
/
battleindex.html
108 lines (92 loc) · 1.54 KB
/
battleindex.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
<div class="b1"></div>
<div class="w1"></div>
<div class="w2"></div>
<div class="w3"></div>
<div class="w4"></div>
<div class="t1"></div>
<div class="t2"></div>
<div class="c1"></div>
<div class="c2"></div>
<style>
body {
background: #191919;
display: flex;
justify-content: center;
align-items: center;
}
.b1 {
width:240px;
height:100px;
background:#F2AD43;
display: flex;
justify-content: center;
align-items: center;
}
.w1{
position:absolute;
width:100px;
height:100px;
background:#191919;
border-radius:50%;
left:24px;
top:100;
}
.w2{
position:absolute;
width:145px;
height:125px;
background:#191919;
border-radius:50%;
left:75px;
top:160;}
.w3{
position:absolute;
width:145px;
height:125px;
background:#191919;
border-radius:50%;
left:185px;
top:160;}
.w4{
position:absolute;
width:100px;
height:100px;
background:#191919;
border-radius:50%;
left:275px;
top:100;}
.t1{
position:absolute;
width:80px;
height:75px;
background:#191919;
top:55;
border-bottom-right-radius:10px;
border-bottom-left-radius:10px;
}
.t2{
position:absolute;
width:20px;
height:20px;
background:#F2AD43;
top:110;
}
.c1{
position:absolute;
width:10px;
height:10px;
background:#F2AD43;
top:105;
left:185;
border-radius:50%;
}
.c2{
position:absolute;
width:10px;
height:10px;
background:#F2AD43;
top:105;
left:205;
border-radius:50%;
}
</style>