-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom2.css
70 lines (60 loc) · 1.26 KB
/
custom2.css
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
.glitch {
text-shadow: 1px 0px 1px red, 0px 1px 1px green;
}
.circleanim {
border: solid red 2px;
border-radius: 50%;
animation: tourne 20s infinite linear alternate-reverse;
}
.spanRotate {
display: inline-block;
animation: tourne 20s infinite linear alternate-reverse;
}
.debug {
border: solid blue 2px;
}
.redacted {
color: black;
background-color: black;
content: "[redacted]";
}
.circlecontainer {
position: fixed;
width: 200px;
height: 200px;
float: right;
}
.circle1, .circle2, .circle3 {
position: fixed;
opacity: 0.5;
border-radius: 50%;
border: solid blue 2px;
clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 0% 80%);
animation: tourne 5s infinite linear alternate-reverse;
}
.circle1 {
width: 200px;
height: 200px;
animation-delay: 0s;
border-color: red;
top: 0px; left: 0px;
}
.circle2 {
width: 180px;
height: 180px;
animation-delay: 2s;
border-color: green;
top: 10px; left: 10px;
}
.circle3 {
width: 160px;
height: 160px;
animation-delay: 4s;
border-color: yellow;
top: 20px; left: 20px;
}
@keyframes tourne {
0% { transform: rotate(0deg); }
50% { transform: rotate(180deg); }
100% { transform: rotate(360deg); }
}