-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles3.css
More file actions
60 lines (52 loc) · 1.22 KB
/
styles3.css
File metadata and controls
60 lines (52 loc) · 1.22 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
.container1 {
position: fixed;
bottom: 175px;
right: 0.5px;
z-index: 1;
cursor: pointer; /* Make sure it's clickable */
border-radius: 50%;
height: 50px;
width: 50px;
background-color: white;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
animation: rotate_3922 1.2s linear infinite;
}
.container1 span {
position: absolute;
border-radius: 50%;
height: 100%;
width: 100%;
background-color: #9b59b6;
background-image: linear-gradient(#9b59b6, #84cdfa, #5ad1cd);
}
.container1 span:nth-of-type(1) {
filter: blur(5px);
}
.container1 span:nth-of-type(2) {
filter: blur(10px);
}
.container1 span:nth-of-type(3) {
filter: blur(5px);
}
.container1 span:nth-of-type(4) {
filter: blur(10px);
}
.container1::after {
content: "";
position: absolute;
top: 5px;
left: 5px;
right: 5px;
bottom: 5px;
background-color: white;
border: solid 5px white;
border-radius: 50%;
}
@keyframes rotate_3922 {
from {
transform: translate(-50%, -50%) rotate(0deg);
}
to {
transform: translate(-50%, -50%) rotate(360deg);
}
}