-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgsoc.css
85 lines (68 loc) · 1.14 KB
/
gsoc.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
body {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.container {
position: relative;
height: 200px;
width: 200px;
}
.gsoc {
position: relative;
left: 50px;
top: 50px;
background-color: #FABB0A;
height: 100px;
width: 100px;
animation: mainRays 3s linear infinite;
}
.gsoc:before {
content: '';
position: relative;
display: block;
top: 0px;
left: 0px;
background-color: #FABB0A;
height: 100px;
width: 100px;
transform: rotate(45deg);
z-index: -1;
}
.gsoc:after {
content: '</>';
position: relative;
left: -5px;
top: -105px;
color: white;
display: block;
font-size: 32px;
font-weight: 600;
font-family: Verdana;
text-align: center;
vertical-align: middle;
line-height: 87px;
background-color: #FABB0A;
height: 90px;
width: 90px;
border-radius: 50%;
border: solid 10px white;
animation: afterContent 3s linear infinite;
}
@keyframes mainRays {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(359deg);
}
}
@keyframes afterContent {
0% {
transform: rotate(0);
}
100% {
transform: rotate(-359deg);
}
}