forked from kokonior/CSS-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanfasa.html
87 lines (77 loc) · 1.39 KB
/
anfasa.html
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
78
79
80
81
82
83
84
85
86
87
<div class="circlebig"></div>
<div class="circlemd"></div>
<div class="circlesmall"></div>
<div class="blackbar logo"></div>
<div class="blackbar hand"></div>
<div class="set"></div>
<div class="blackbar string string1"></div>
<div class="blackbar string string2"></div>
<style>
body {
background : #F3AC3C;
align-items : center;
justify-content : center;
display : flex;
}
.circlebig {
position : absolute;
left : 45;
border-radius : 50%;
width: 120px;
height: 120px;
background: #998235;
}
.circlemd{
position : absolute;
left : 115;
border-radius : 50%;
width: 100px;
height: 100px;
background: #998235;
}
.circlesmall{
position : absolute;
left : 145;
border-radius : 50%;
width: 40px;
height: 40px;
background: #1A4341;
box-shadow : 0 0 0 5px #F3AC3C;
}
.blackbar{
position : absolute;
border-radius : 25%;
background: #1A4341;
}
.logo{
left : 85;
width: 10px;
height: 40px;
}
.hand{
left : 195;
width: 150px;
height: 20px;
z-index : -1;
}
.set{
position : absolute;
border-radius : 25%;
background: #998235;
left : 315;
width: 40px;
height: 30px;
}
.string{
width: 20px;
height: 4px;
}
.string1{
left : 325;
top : 143;
}
.string2{
left : 325;
top : 153;
}
</style>