-
Notifications
You must be signed in to change notification settings - Fork 0
/
#65-Max-Volume.htm
64 lines (57 loc) · 1.19 KB
/
#65-Max-Volume.htm
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
<div class="a"></div>
<div class="b"></div>
<style>
::before,
::after {
content: "";
position: absolute;
}
body {
background: #191919;
}
div {
position: absolute;
}
.a {
width: 0;
height: 0;
border-top: 100px solid transparent;
border-right: 100px solid #5DBCF9;
border-bottom: 100px solid transparent;
left: 25%;
top: 16.5%
}
.a::before {
width: 50px;
height: 50px;
border-radius: 10px 0 0 10px;
background: #5DBCF9;
top: -24.5px;
left: -24.7px;
}
.b {
width: 40px;
height: 80px;
border: 10px solid #5DBCF9;
border-left: 0;
border-radius: 0 100px 100px 0;
top: 33.1%;
left: 56.2%;
}
.b::before {
width: 65px;
height: 130px;
border: 10px solid #5DBCF9;
border-left: 0;
border-radius: 0 100px 100px 0;
top: -43.5%
}
.b::after {
width: 90px;
height: 180px;
border: 10px solid #5DBCF9;
border-left: 0;
border-radius: 0 100px 100px 0;
top: -75%;
}
</style>