Skip to content

Commit cc75d43

Browse files
committed
daily css target
1 parent 0527399 commit cc75d43

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed

09-12-2023/index.html

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<div class="f v">
2+
<div class="f r">
3+
<div class="h"></div>
4+
<div class="h"></div>
5+
</div>
6+
<div class="f">
7+
<div class="h"></div>
8+
<div class="h"></div>
9+
</div>
10+
</div>
11+
<style>
12+
body {
13+
margin: 0;
14+
background: #004416;
15+
}
16+
.h {
17+
width: 0;
18+
height: 0;
19+
border-bottom: 1.5rem solid #82CA9C;
20+
border-right: 3rem solid transparent;
21+
border-left: 3rem solid transparent;
22+
position: relative;
23+
}
24+
.h:after {
25+
position: absolute;
26+
content: '';
27+
width: 5rem;
28+
height: 3rem;
29+
background: #82CA9C;
30+
top: 1rem;
31+
left: -2rem;
32+
}
33+
.f {
34+
display: flex;
35+
justify-content: center;
36+
}
37+
.f.r {
38+
transform: rotate(180deg);
39+
}
40+
.f.v {
41+
flex-direction: column;
42+
gap: 3.6rem;
43+
align-items: center;
44+
height: 100vh;
45+
}
46+
</style>

09-12-2023/target.png

4.17 KB
Loading

0 commit comments

Comments
 (0)