PluginProbe
Redirection / 2.7.1
Redirection v2.7.1
5.10.0 5.9.0 5.8.1 5.8.0 3.7.2 3.7.3 4.0 4.0.1 4.1 4.1.1 4.2 4.2.1 4.2.2 4.2.3 4.3 4.3.1 4.3.2 4.3.3 4.4 4.4.1 4.4.2 4.5 4.5.1 4.6.2 4.7.1 All 130 releases
redirection / redirection.css

redirection.css in Redirection 2.7.1, at redirection.css

57 lines 947 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 #react-ui h1 {
2 text-align: center;
3 color: #999;
4 margin-top: 150px;
5 }
6
7 .react-loading {
8 position: absolute;
9 width: 100%;
10 height: 100%;
11 }
12
13 .react-loading-spinner {
14 position: absolute;
15 width: 120px;
16 height: 120px;
17 left: 50%;
18 margin-left: -65px;
19
20 background-color: #333;
21 border-radius: 100%;
22 -webkit-animation: sk-scaleout-loading 1.0s infinite ease-in-out;
23 animation: sk-scaleout-loading 1.0s infinite ease-in-out;
24 }
25
26 .react-error p {
27 text-align: center;
28 line-height: 1;
29 }
30
31 .react-error pre {
32 border: 1px solid #aaa;
33 background-color: white;
34 padding: 10px;
35 margin: 0 auto;
36 width: 600px;
37 }
38
39 @-webkit-keyframes sk-scaleout-loading {
40 0% { -webkit-transform: scale(0) }
41 100% {
42 -webkit-transform: scale(1.0);
43 opacity: 0;
44 }
45 }
46
47 @keyframes sk-scaleout-loading {
48 0% {
49 -webkit-transform: scale(0);
50 transform: scale(0);
51 } 100% {
52 -webkit-transform: scale(1.0);
53 transform: scale(1.0);
54 opacity: 0;
55 }
56 }
57