-
Notifications
You must be signed in to change notification settings - Fork 0
/
#49-Stay-At-Home.htm
52 lines (47 loc) · 973 Bytes
/
#49-Stay-At-Home.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
<div class="a"></div>
<div class="b"></div>
<style>
body {
background: #6592CF;
}
::before,
::after {
content: "";
position: absolute;
}
.a {
width: 0;
height: 0;
border-left: 100px solid transparent;
border-right: 100px solid transparent;
border-bottom: 100px solid #243D83;
position: absolute;
top: 16.5%;
left: 25%;
}
.b {
width: 150px;
height: 100px;
border-radius: 0 0 10px 10px;
background: #243D83;
position: absolute;
top: 50%;
left: 31.2%;
}
.b:before {
width: 100px;
height: 10px;
border-radius: 5px;
background: #EEB850;
left: 17%;
top: -5%
}
.b::after {
width: 50px;
height: 50px;
border-radius: 10px 10px 0 0;
background: #EEB850;
top: 50%;
left: 33.5%
}
</style>