-
Notifications
You must be signed in to change notification settings - Fork 0
/
#20-Ticket.htm
60 lines (53 loc) · 985 Bytes
/
#20-Ticket.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
<div a>
<div b></div>
<div c></div>
</div>
<style>
:before,
:after {
position: absolute;
content: '';
}
body {
background: #62306D;
}
[a] {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
}
[b] {
width: 140px;
height: 100px;
background: #F7EC7D;
}
[c] {
width: 60px;
height: 100px;
background: #E38F66;
}
[a]:before,
[a]:after {
width: 40px;
height: 40px;
border-radius: 50%;
background: #62306D;
left: -10%;
top: -20%;
-webkit-box-reflect: below 60px;
}
[a]:after {
left: 90%
}
[c]:before {
width: 20px;
height: 20px;
background: #62306D;
border-radius: 50%;
left: 130;
top: -10;
-webkit-box-reflect: below 80px;
}
</style>