-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path#65 - Max Volume.html
70 lines (70 loc) · 1.23 KB
/
#65 - Max Volume.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
<div a></div>
<div b></div>
<div c></div>
<div d></div>
<div e></div>
<style>
*{
background:#191919;
margin:0;
}
[a]{
position:fixed;
top:125;
left:75;
width: 75px;
background:#5DBCF9;
border-radius:10px;
height: 50px;
z-index:20;
}
[b]{
position:relative;
top:50;
left:50;
height:200;
width:150;
background:#5DBCF9;
clip-path: polygon(100% 0, 33% 50%, 100% 100%);
z-index:20;
}
[c]{
position:fixed;
top:100;
left:175;
height:80;
width:80;
border:10px solid #5DBCF9;
border-radius:550px;
border-top:10px solid transparent;
border-left:10px solid transparent;
transform:rotate(-45deg);
z-index:5;
}
[d]{
position:fixed;
top:50;
left:125;
height:180;
width:180;
border:10px solid #5DBCF9;
border-radius:550px;
border-top:10px solid transparent;
border-left:10px solid transparent;
transform:rotate(-45deg);
z-index:1;
}
[e]{
position:fixed;
top:75;
left:150;
height:130;
width:130;
border:10px solid #5DBCF9;
border-radius:550px;
border-top:10px solid transparent;
border-left:10px solid transparent;
transform:rotate(-45deg);
z-index:2;
}
</style>