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 | 15x | .varClass {
--titleColor: var(--zdt_commonEmptyState_default_title);
--descriptionColor: var(--zdt_commonEmptyState_default_description);
--linkColor: var(--zdt_commonEmptyState_default_link);
--linkHoverColor: var(--zdt_commonEmptyState_default_link_hover);
}
.container {
text-align: center;
margin-left: auto;
margin-right: auto;
composes: varClass;
}
.fluid {
max-width: 430px;
}
.title {
font-family: var(--zd_semibold);
color: var(--titleColor);
word-wrap: break-word;
}
.small .title {
font-size: 16px;
}
.medium .title {
font-size: 20px;
}
.linkWrapper,
.linkDescWrapper {
color: var(--descriptionColor);
}
.small .linkWrapper,
.small .linkDescWrapper {
font-size: 12px;
}
.medium .linkWrapper,
.medium .linkDescWrapper {
font-size: 14px;
}
.medium .linkWrapper {
margin-top: 18px;
}
.small .linkWrapper {
margin-top: 12px;
}
.linkDescWrapper {
margin-top: 20px;
}
.desc{
word-wrap: break-word;
}
.linkDesc+.link,
.desc+.link {
margin-left: 4px;
}
.small .desc {
line-height: 1.584;
}
.medium .desc {
line-height: 1.358;
}
.link {
cursor: pointer;
color: var(--linkColor);
}
.link:hover {
color: var(--linkHoverColor);
}
.children {
margin-top: 15px;
}
.default {
--titleColor: var(--zdt_commonEmptyState_default_title);
--linkColor: var(--zdt_commonEmptyState_default_link);
--linkHoverColor: var(--zdt_commonEmptyState_default_link_hover);
--descriptionColor: var(--zdt_commonEmptyState_default_description);
}
.dark {
--titleColor: var(--zdt_commonEmptyState_dark_title);
--linkColor: var(--zdt_commonEmptyState_dark_link);
--linkHoverColor: var(--zdt_commonEmptyState_dark_link_hover);
--descriptionColor: var(--zdt_commonEmptyState_dark_description);
}
|