-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
80 lines (80 loc) · 1.35 KB
/
style.css
File metadata and controls
80 lines (80 loc) · 1.35 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
body{
margin: 0px;
padding: 0px;
background: #262626;
}
.uruziga{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 150px;
height: 150px;
border-radius: 50%;
border: 3px solid #3c3c3c;
text-align: center;
line-height: 150px;
font-family: sans-serif;
font-size: 20px;
color: #fff000;
letter-spacing: 4px;
text-transform: uppercase;
text-shadow: 0 0 10px #fff000;
box-shadow: 0 0 20px
rgba(0, 0, 0, .5);
}
.uruziga:before{
content: '';
position: absolute;
width: 100%;
height: 100%;
top: -3%;
left: -3%;
border: 3px solid #fff000;
border-bottom: 3px solid
transparent;
border-right: 3px solid
transparent;
border-radius: 50%;
animation: animationUruziga 2s
linear infinite;
}
span{
direction: block;
position: absolute;
top: calc(50% - 2px);
left: 50%;
width: 50%;
height: 4px;
transform-origin: left;
animation: animationZiga 2s
linear infinite;
}
span:before{
content: '';
position: absolute;
width: 16px;
height: 16px;
border-radius: 50%;
background: #fff000;
right: -8px;
box-shadow: 0 0 20px #fff000;
}
@keyframes animationZiga
{
0%{
transform: rotate(0deg);
}
100%{
transform: rotate(360deg);
}
}
@keyframes animationUruziga
{
0%{
transform: rotate(45deg);
}
100%{
transform: rotate(405deg);
}
}