-
Notifications
You must be signed in to change notification settings - Fork 0
/
Css-Battle-141.html
81 lines (75 loc) · 1.22 KB
/
Css-Battle-141.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
<div class="a"></div>
<div class="b"></div>
<div class="c"></div>
<style>
body{
background:#E3516E;
margin:0px;
}
/* that get 99.7% point 2023/04/16 */
.a{
width: 75px;
height: 75px;
background: #D9D9D9;
border-bottom-right-radius:100%;
}
.b{
position:absolute;
left:130px;
top:121px;
width: 140px;
height: 58px;
background: #D9D9D9;
border-radius:100%;
}
.c{
position:absolute;
right:0px;
bottom:0px;
rotate:180deg;
width: 75px;
height: 75px;
background: #D9D9D9;
border-bottom-right-radius:100%;
}
</style>
<!-- taht slotaion gets 100% points
<div class="a"></div>
<div class="b"></div>
<div class="c"></div>
<style>
body{
background:#E3516E;
margin:0;
display:grid;
place-items:center;
position:relative;
}
.a{
position:absolute;
top:0;
left:0;
width: 75px;
height: 75px;
background: #D9D9D9;
border-bottom-right-radius:100%;
}
.b{
width: 100px;
height: 100px;
background: #D9D9D9;
border-radius:100% 0;
rotate:45deg;
}
.c{
position:absolute;
right:0px;
bottom:0px;
rotate:180deg;
width: 75px;
height: 75px;
background: #D9D9D9;
border-bottom-right-radius:100%;
}
</style>
-->