Skip to content

Commit 2c6f037

Browse files
committed
daily css target
1 parent 9abc3b5 commit 2c6f037

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed

06-11-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="c"></div>
3+
<div class="f">
4+
<div class="c"></div>
5+
<div class="c z"></div>
6+
<div class="c"></div>
7+
</div>
8+
<div class="c"></div>
9+
</div>
10+
<style>
11+
body {
12+
margin: 0;
13+
background: #302562;
14+
box-sizing: border-box;
15+
}
16+
.f {
17+
display: flex;
18+
justify-content: center;
19+
align-items: center;
20+
}
21+
.f.v {
22+
flex-direction: column;
23+
margin-top: 60px;
24+
}
25+
.c {
26+
margin: -30px -30px;
27+
width: 7.5rem;
28+
height: 7.5rem;
29+
background: #302562;
30+
position: relative;
31+
}
32+
.c:after {
33+
content: '';
34+
width: 3.75rem;
35+
height: 3.75rem;
36+
background: #302562;
37+
border-radius: 50%;
38+
border: 1.25rem solid #0098D1;
39+
position: absolute;
40+
top: 10px;
41+
left: 10px;
42+
}
43+
.c.z {
44+
z-index: 1;
45+
}
46+
</style>

06-11-2023/target.png

13.3 KB
Loading

0 commit comments

Comments
 (0)