-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
120 lines (105 loc) · 2.06 KB
/
styles.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
112
113
114
115
116
117
118
119
120
@import url('https://fonts.googleapis.com/css?family=Inconsolata');
html {
height: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background: #70b g32;
background-repeat: no-repeat
}
body {
background: #fff;
font-size: 100%;
font-weight: 400;
color: #272727;
text-align: center;
font-family: 'Inconsolata', monospace;
background: linear-gradient( to left top, #EB3349, #F45C43) fixed;
}
.spinner {
margin: 0px auto 0px;
top: 50%;
left: 50%;
position: absolute;
transform: translate(-50%, -50%);
width: 100%;
text-align: center;
}
.spinner > div {
width: 12px;
height: 12px;
background-color: #eaeaea;
border-radius: 100%;
display: inline-block;
-webkit-animation: sk-bouncedelay 1.3s infinite ease-in-out both;
}
.spinner .bounce1 {
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.spinner .bounce2 {
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
0%, 80%, 100% { -webkit-transform: scale(0) }
40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
0%, 80%, 100% {
-webkit-transform: scale(0);
transform: scale(0);
} 40% {
-webkit-transform: scale(1.0);
transform: scale(1.0);
}
}
.error {
top: 50%;
left: 50%;
position: absolute;
transform: translate(-50%, -50%);
text-align: center;
width: 100%;
margin: 0px auto 0px;
display: none;
}
.error > p {
margin-top: -200px;
}
.error > img {
display: block;
margin: 0 auto;
}
.gif {
zoom: 200%;
}
img {
top: 50%;
/* left: 50%; */
margin: auto;
position: absolute;
transform: translate(-50%, -50%);
box-shadow: 0px 14px 100px -24px #151515;
border-radius: 7px;
}
.footer {
position: fixed;
right: 0;
bottom: 0;
left: 0;
padding: 1rem;
font-size: 12px;
background-color: #c51f2e;
}
.footer > .left {
text-align: left;
width: 400px;
float: left;
}
.footer > .right {
margin-top: 2px;
width: 200px;
float: right;
}