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 | 6x | .container {
padding-bottom: 30px;
}
.errorBtn {
margin-top: 15px;
}
.title {
font-family: var(--zd_bold);
}
.desc {
line-height: 1.5714;
}
.large .errorState {
width: 450px;
margin-top: 40px;
}
.large .errorSvg {
width: 350px;
height: 350px;
}
.medium .errorState {
width: 350px;
margin-top: 30px;
}
.medium .errorSvg {
width: 250px;
height: 250px;
}
.medium .title {
font-size: 18px;
}
.medium .desc,
.small .desc {
font-size: 13px
}
.small .errorState {
width: 230px;
margin-top: 20px;
}
.small .errorSvg {
width: 220px;
height: 220px;
}
.small .title {
font-size: 16px;
}
|