2016-07-29 03:49:16 +08:00
|
|
|
/* Variables
|
|
|
|
* ==========
|
|
|
|
*/
|
|
|
|
.background {
|
2019-08-17 05:38:17 +08:00
|
|
|
position: fixed;
|
2016-07-29 03:49:16 +08:00
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2018-10-19 04:37:14 +08:00
|
|
|
background-color: var(--loader-bg);
|
2021-02-13 00:55:39 +08:00
|
|
|
z-index: 4;
|
2016-07-29 03:49:16 +08:00
|
|
|
}
|
|
|
|
|
2017-07-14 22:18:07 +08:00
|
|
|
.message {
|
2018-10-19 04:37:14 +08:00
|
|
|
font-size: var(--font-size-large);
|
|
|
|
color: var(--color-white);
|
2017-07-14 22:18:07 +08:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2016-07-29 03:49:16 +08:00
|
|
|
.spinner {
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
height: 22px;
|
2018-10-19 04:37:14 +08:00
|
|
|
margin-bottom: var(--md-padding-x);
|
2016-07-29 03:49:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.spinner > div {
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
margin: 0 5px;
|
2018-10-19 04:37:14 +08:00
|
|
|
background-color: var(--loader-bullet);
|
2016-07-29 03:49:16 +08:00
|
|
|
border-radius: 100%;
|
|
|
|
display: inline-block;
|
2019-02-28 23:11:36 +08:00
|
|
|
|
2019-04-11 23:04:10 +08:00
|
|
|
:global(.animationsEnabled) & {
|
2019-02-28 23:11:36 +08:00
|
|
|
animation: sk-bouncedelay 1.4s infinite ease-in-out both;
|
|
|
|
}
|
2016-07-29 03:49:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.spinner .bounce1 {
|
2019-04-11 23:04:10 +08:00
|
|
|
:global(.animationsEnabled) & {
|
2019-03-13 05:08:50 +08:00
|
|
|
animation-delay: -0.32s;
|
|
|
|
}
|
2016-07-29 03:49:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.spinner .bounce2 {
|
2019-04-11 23:04:10 +08:00
|
|
|
:global(.animationsEnabled) & {
|
2019-03-13 05:08:50 +08:00
|
|
|
animation-delay: -0.16s;
|
|
|
|
}
|
2016-07-29 03:49:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes sk-bouncedelay {
|
2018-10-19 04:37:14 +08:00
|
|
|
0%,
|
|
|
|
80%,
|
|
|
|
100% {
|
2016-07-29 03:49:16 +08:00
|
|
|
transform: scale(0);
|
2018-10-19 04:37:14 +08:00
|
|
|
}
|
|
|
|
40% {
|
2016-07-29 03:49:16 +08:00
|
|
|
transform: scale(1.0);
|
|
|
|
}
|
|
|
|
}
|