-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.scss
110 lines (95 loc) · 1.43 KB
/
styles.scss
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
/* ss global */
html, body {
height: 100%;
min-height: 100%;
}
body{
background: linear-gradient(120deg, #1A1A1D, #131314) !important;
}
#content {
height: 100%;
min-height: 100%;
}
#loading {
-webkit-animation: fadein 1.5s;
-moz-animation: fadein 1.5s;
-ms-animation: fadein 1.5s;
-o-animation: fadein 1.5s;
animation: fadein 1.5s;
padding-top: 25%;
p {
padding-top: 1vh;
text-align: center;
color: #fff;
font-size: 1.2rem;
}
.spinner {
border: .5rem solid #f3f3f3; /* Light grey */
border-top: .5rem solid #C3073F; /* Blue */
border-radius: 50%;
width: 4rem;
height: 4rem;
animation: spin 2s linear infinite;
margin-left: auto;
margin-right: auto;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Firefox < 16 */
@-moz-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Internet Explorer */
@-ms-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Opera < 12.1 */
@-o-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.invalid {
margin-top: 0.5rem;
color: #C3073F
}
.bigerror {
margin-bottom: 0.5rem;
}