-
Notifications
You must be signed in to change notification settings - Fork 6
/
Beeee.html
74 lines (73 loc) · 1.27 KB
/
Beeee.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
<div class="outer">
<div class="inner a">
<div class="circle x"></div>
<div class="circle y"></div>
<div class="circle-combine"></div>
</div>
<div class="inner b">
<div class="eye"></div>
</div>
</div>
<style>
body {
background: #998235;
margin: 0;
}
.outer {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
flex-direction: column;
}
.inner {
height: 75;
width: 150;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.a {
}
.circle {
background: #ffffff;
height: 75;
width: 75;
border-radius: 50%;
}
.circle-combine {
background: #ffffff;
position: absolute;
width: 70;
height: 40;
transform: translateY(18px);
z-index: -2;
}
.b {
background-image: linear-gradient(
to right,
#191919,
#191919 17%,
#eff33c 17%,
#eff33c 24%,
#191919 24%,
#191919 40%,
#eff33c 40%,
#eff33c 47%,
#191919 47%,
#191919 63%,
#eff33c 45%,
#eff33c 85%
);
border-radius: 50px;
}
.eye {
background: #191919;
height: 15;
width: 15;
border-radius: 50%;
transform: translate(48px, -10px);
}
</style>