-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.css
111 lines (95 loc) · 2.37 KB
/
App.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
.App {
text-align: center;
}
.App-logo {
animation: fast-spin 5s cubic-bezier(.42,1,.38,.93), App-logo-spin infinite 5s linear;
animation-delay: 0s, 5s;
height: 80px;
}
.App-header {
background-color: #222 !important;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkAgMAAAANjH3HAAAACVBMVEUaGhohISElJSUh9lebAAABwElEQVR4AY3Vua3gOBgGQQXZhgKYgwHJYAA0Ksu9CAh6hxbTbvFzfx6rNEGlHY6z5KvMw4s43mN2Z5fqYLzKyrfyXhXKnKBdD9n58UWW3Vlb3mOCmWoHHZbdV5lv8t7Ver6ldsfqumVAdbblxxcZVcd7QWq2Y6VsadS4ZTzFDbFa5XivqlxVUFG1Jd6k66u8x0RIOw0cXAiNW2z58bJ5r1LTQtVVuy1x2jK+yLTlxy3v5RogszEXSB0ZF4iYWLbMMUBGPDbvpRQUVUV9kvGU6ynrIe9FOqssJcQ4oqurCjV6ytmqco4SwvGeNCoJaphwSHoK13cyuuU9ZaQI0lB1qB8zT3GL2XjKueU9pR+gH0OlqvGUzHWLQ81O0Dg95L3Uj9qxKx0pr3LdYrnlvQKlUEnV/8v4Xt6bThZROwaO5QfTUyY4GCBWu8Wf/nO4ULtj/li3mE9Z47zlx/WU94Iq7RD5XuZ6ynjIGn9yr1VhFaq2NH9s4bP4Rt5j2NFO5MBXGVsmsD5v3gslYORsd8R1i1rrIUoLKLXlvVhgKH7ApToyhk21TJhbLDvdN151vEetJtKdOtYo4SmnOvhGpjpe+xuj3X723ghdygAAAABJRU5ErkJggg==) !important;
height: 150px;
padding: 20px;
color: white;
}
.App-title {
font-size: 1.5em;
}
.App-title-link {
text-decoration: none;
color: white;
}
.App-intro {
font-size: large;
}
@keyframes App-logo-spin {
from { transform: rotate(0deg); }
to { transform: rotate(-360deg); }
}
@keyframes fast-spin {
from { transform: rotate(0deg); }
to { transform: rotate(-3600deg); }
}
.counter {
width: 88px;
position: absolute;
margin: 0 auto;
bottom: 20px;
left: 0px;
right: 0px;
display: none;
}
.counter .classy.with.style.so.legit {
margin: auto;
position: relative;
top: -36px;
left: -20px;
background-color:#EEE;
width: 40px;
height: 30px;
font-family: Arial;
font-size: 9px;
line-height: 10px;
text-align:left;
}
.octicon {
fill: #c0c0c0;
height: 60px;
padding: 10px;
}
.octicon:hover {
fill: #4183C4;
}
.octoicon-link:hover::after {
animation: shine 1s 0s;
}
.octoicon-link {
display: inline-block;
position: relative;
clip-path: circle(30px at 40px 40px);
}
.octoicon-link:after {
content: "";
position: absolute;
right: 0%;
width: 25%;
height: 100%;
opacity: 0;
transform: rotate(30deg);
background: rgba(255, 255, 255, 0.13);
background: linear-gradient(
to right,
#4183C421 0%,
#4183C421 77%,
#4183C480 92%,
#4183C421 100%
);
animation: shine 1s 3s;
}
@keyframes shine {
to {
opacity: 1;
right: 100%;
}
}