You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
727 B
50 lines
727 B
/* components/empty/index.wxss */
|
|
|
|
.empty {
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
|
|
.empty-loading {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
}
|
|
.empty-bd, .empty_bottom {
|
|
padding: 10px 0;
|
|
text-align: center;
|
|
font-size: 17px;
|
|
color: #888;
|
|
}
|
|
|
|
.load-indicator {
|
|
font-size: 16px;
|
|
color: #888;
|
|
text-align: center;
|
|
}
|
|
dot {
|
|
display: inline-block;
|
|
overflow: hidden;
|
|
height: 1em;
|
|
line-height: 1;
|
|
vertical-align: -.25em;
|
|
}
|
|
|
|
dot::after {
|
|
display: block;
|
|
white-space: pre-wrap;
|
|
content: "...\A..\A.";
|
|
animation: loading 3s infinite step-start both;
|
|
}
|
|
|
|
@keyframes loading {
|
|
33% {
|
|
transform: translate3d(0, -2em, 0);
|
|
}
|
|
|
|
66% {
|
|
transform: translate3d(0, -1em, 0);
|
|
}
|
|
}
|
|
|