UNPKG

1.13 kBCSSView Raw
1._build-loading-live-reload {
2 position: fixed;
3 right: 0;
4 top: -50px;
5 padding: 5px 10px;
6 background-color: rgba(0, 0, 0, 0.61);
7 user-select: none;
8 z-index: 1000000;
9}
10
11._build-loading-live-reload ._build-loading-spiner {
12 display: inline-block;
13 width: 30px;
14 height: 30px;
15 border: 3px #efefef solid;
16 border-top-color: #00ccca;
17 border-radius: 100%;
18 text-align: center;
19 background-color: transparent;
20 vertical-align: middle;
21}
22
23._build-loading-live-reload ._build-loading-text {
24 display: inline-block;
25 margin-left: 10px;
26 text-align: center;
27 color: #00ccca;
28 user-select: none;
29}
30
31._build-loading-live-reload ._build-rounding {
32 animation: _build-rounding 0.8s ease infinite;
33}
34
35._build-loading-slide-down {
36 animation: _build-slideDown 0.3s ease-in 1 both;
37}
38
39@keyframes _build-rounding {
40 from {
41 transform: rotate(0deg);
42 }
43 to {
44 transform: rotate(360deg);
45 }
46}
47
48@keyframes _build-slideDown {
49 from {
50 top: -50px;
51 }
52 to {
53 top: 0;
54 }
55}
\No newline at end of file