Skip to content

Commit 00495b9

Browse files
committed
daily css target
1 parent efca1ea commit 00495b9

File tree

2 files changed

+50
-0
lines changed

2 files changed

+50
-0
lines changed

25-11-2023/index.html

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<div class="c"></div>
2+
<div class="f">
3+
<div class="s"></div>
4+
<div class="s m"></div>
5+
</div>
6+
<style>
7+
body {
8+
margin: 0;
9+
background: #004563;
10+
}
11+
.f {
12+
display: flex;
13+
gap: 1.9rem;
14+
margin: -3.75rem 2.8rem;
15+
}
16+
.c {
17+
margin: 3.75rem auto 0rem;
18+
width: 7.5rem;
19+
height: 2.5rem;
20+
background-color: #004563;
21+
border: 1.9rem solid #92B6C7;
22+
border-radius: 7.25rem 7.25rem 0 0;
23+
}
24+
.s {
25+
width: 5rem;
26+
height: 5rem;
27+
border-radius: 3.75rem;
28+
border: 1.9rem solid #92B6C7;
29+
background: #004563;
30+
position: relative;
31+
z-index: -1;
32+
}
33+
.s:before, .s:after {
34+
content: '';
35+
background: #004563;
36+
width: 4.2rem;
37+
height: 8rem;
38+
position: absolute;
39+
top: -1rem;
40+
left: -2rem;
41+
}
42+
.s:after {
43+
transform: rotate(90deg);
44+
top: -4.2rem;
45+
left: 0.8rem;
46+
}
47+
.s.m {
48+
transform: scaleX(-1);
49+
}
50+
</style>

25-11-2023/target.png

9.52 KB
Loading

0 commit comments

Comments
 (0)