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 | 1x | .editionContainer {
text-align: center;
}
.svg {
margin-top: 140px;
}
.header {
font-size: 20px;
font-family: var(--zd_semibold);
margin-top: 16px;
}
.description {
font-size: 15px;
font-family: var(--zd_semibold);
margin: 20px 0;
}
.content {
margin: 10px 0;
}
.footer {
font-size: 13px;
margin: 10px 0 80px 0;
position: relative;
display: inline-block;
}
.footer::before {
content: '';
border-top: var(--zd_size1) solid var(--zdt_editionpage_footer_text);
position: absolute;
left: -20px;
right: -20px;
top: -10px;
}
.button {
color: var(--zdt_editionpage_primary_text);
cursor: pointer;
}
|