-
Notifications
You must be signed in to change notification settings - Fork 0
/
#45-Magical-Tree.htm
77 lines (66 loc) · 1.12 KB
/
#45-Magical-Tree.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
65
66
67
68
69
70
71
72
73
74
75
76
77
<div class="b"></div>
<div class="c"></div>
<div class="a"></div>
<style>
* {
margin: 0;
}
body {
background: #1A4341;
}
::before,
::after {
content: '';
position: absolute;
}
div {
position: absolute;
}
.a {
width: 30px;
height: 300px;
background: #F3AC3C;
left: 50%;
transform: translate(-50%);
}
.a::before,
.a::after {
width: 30px;
height: 200px;
background: #F3AC3C;
left: -400%;
}
.a::after {
left: 400%;
}
.b {
width: 150px;
height: 30px;
background: #998235;
left: 31.2%;
top: 40%
}
.b::before,
.b::after {
width: 30px;
height: 150px;
background: #998235;
top: -120px;
}
.b::after {
left: 80%;
}
.c,
.c::after {
width: 270px;
height: 30px;
background: #F3AC3C;
left: 16.2%;
top: 60%
}
.c::after {
background: #998235;
left: 0;
top: 60px;
}
</style>