Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | 1x | .stenLoading {
background-color: var(--zdt_gridstencils_default_bg);
border-bottom: 1px solid var(--zdt_gridstencils_default_border);
padding: 13px 15px 11px 15px;
position: relative;
margin-bottom: 10px;
border-radius: var(--zd_size5);
}
.stenLoadbody {
margin: 8px 20px 8px 0;
}
.stenLoadbody::after {
content: '';
height: 22px;
width: 22px;
right: 20px;
top: 15px;
border-radius: 50%;
position: absolute;
background-color: var(--zdt_gridstencils_after_bg);
}
.lineBar {
width: 90%;
}
.lineBar2 {
width: 70%;
margin: 22px 0;
}
.lineBar3 {
width: 50%;
}
.lineBar,
.lineBar2,
.lineBar3 {
height: 5px;
border-radius: var(--zd_size5);
}
.stenListBAr {
-webkit-animation-duration: var(--zd_transition10);
-webkit-animation-fill-mode: forwards;
-webkit-animation-iteration-count: infinite;
-webkit-animation-name: placeHolderShimmer;
-webkit-animation-timing-function: linear;
background: var(--zdt_gridstencils_listbar_bg);
background-image: var(--zdt_gridstencils_listbar_gradient_bg);
background-repeat: no-repeat;
position: relative;
}
.stenListBAr {
-webkit-animation-duration: var(--zd_transition10);
-webkit-animation-fill-mode: forwards;
-webkit-animation-iteration-count: infinite;
-webkit-animation-name: placeHolderShimmer;
-webkit-animation-timing-function: linear;
background: var(--zdt_gridstencils_listbar_bg);
background-image: var(--zdt_gridstencils_listbar_gradient_bg);
background-repeat: no-repeat;
}
@keyframes placeHolderShimmer {
0% {
background-position: -468px 0;
}
100% {
background-position: 468px 0;
}
}
.threeLayout .stenLoadbody::before {
left: 16px;
transform: scale(0.8);
}
.threeLayout .stenLoadbody {
margin: 8px 20px 8px 0;
}
.threeLayout .stenLoadbody::after {
right: 20px;
transform: scale(0.8);
top: 15px;
}
.leftCont .stenLoadbody::before {
left: 33px;
}
.leftCont .stenLoadbody {
margin: 8px 20px 8px 46px;
}
.leftCont .stenLoadbody::after {
right: 40px;
}
.leftCont .lineBar {
width: 80%;
}
.leftCont .lineBar2 {
width: 60%;
}
.leftCont .lineBar3 {
width: 40%;
} |