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
| .loading-page {
| width: 100vw;
| height: 100vh;
| overflow: hidden;
|
| .list-item {
| width: 100%;
| padding: 20px 20px 10px;
| box-sizing: border-box;
| border-bottom: 1px solid #e8e8e8;
| display: flex;
|
| .avatar {
| width: 40px;
| height: 40px;
| min-width: 40px;
| border-radius: 40px;
| float: left;
| margin-right: 15px;
| }
| .content {
| width: 100%;
| padding-top: 10px;
| .line {
| width: 100%;
| height: 15px;
| margin-bottom: 10px;
| }
| .half {
| width: 50%;
| }
| }
| }
| .loading-skeleton {
| background: #f2f2f2;
| background: -webkit-gradient(linear,left top,right top,color-stop(25%,#f2f2f2),color-stop(37%,#e6e6e6),color-stop(63%,#f2f2f2));
| background: linear-gradient(90deg,#f2f2f2 25%,#e6e6e6 37%,#f2f2f2 63%);
| background-size: 400% 100%;
| -webkit-animation: mk-skeleton-loading 1.4s ease infinite;
| animation: mk-skeleton-loading 1.4s ease infinite;
| }
| @keyframes mk-skeleton-loading{0%{background-position:100% 50%}100%{background-position:0 50%}}
| @-webkit-keyframes mk-skeleton-loading{0%{background-position:100% 50%}100%{background-position:0 50%}}
| }
|
|