-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
93 lines (82 loc) · 1.6 KB
/
Copy pathstyles.css
File metadata and controls
93 lines (82 loc) · 1.6 KB
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
88
89
90
91
92
93
html, body {
height: 100 vh;
display: flex;
align-items: center;
justify-content: center;
}
.main_eye {
height: 400px;
width: 400px;
background: #B50600;
border-radius: 50%;
border: 10px solid black;
display: flex;
position: relative;
}
.nested_eye {
position: absolute;
height: 280px;
width: 280px;
background: #B50600;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius:50%;
border: 5px solid rgba(0, 0, 0, 0.3);
animation: rotate-anim 1.5s linear infinite;
/* opacity: 0.3; */
}
.dot {
height: 50px;
width: 50px;
background: black;
border-radius: 50%;
position: absolute;
}
.side {
height: 20px;
width: 18px;
background: black;
position: absolute;
left: 4px;
top: -10px;
border-radius: 0% 145% 0 90%;
transform: rotateZ(60deg);
}
.dot_1 {
top: 0px;
left: -10px;
transform: translate(50%, 50%);
}
.dot_2 {
top: 50%;
left: 100%;
transform: translate(-50%, -100%) rotateZ(90deg);
}
.dot_3 {
top: 100%;
left: 50%;
transform: translate(-50%, -50%) rotateZ(180deg);
}
.center {
height: 150px;
width: 150px;
background: black;
border-radius: 50%;
position: absolute;
top: -3%;
left: 50%;
transform: translate(-50%, 50%);
box-shadow: 5px 5px 100px black;
}
@keyframes rotate-anim {
0% {
transform: translate(-50%, -50%) rotateZ(0deg);
}
50% {
transform: translate( -50%, -50%) rotateZ(340deg);
}
100% {
transform: translate(-50%, -50%) rotateZ(0deg);
}
}