1 | .adm-error-block {
|
2 | --color: var(--adm-color-text);
|
3 | --image-height: var(--adm-error-block-image-height, 100px);
|
4 | --image-height-full-page: var(--adm-error-block-image-height-full-page, 200px);
|
5 | --image-width: var(--adm-error-block-image-width, auto);
|
6 | --image-width-full-page: var(--adm-error-block-image-width-full-page, auto);
|
7 | box-sizing: border-box;
|
8 | text-align: center;
|
9 | }
|
10 | .adm-error-block-image {
|
11 | height: var(--image-height);
|
12 | width: var(--image-width);
|
13 | max-width: 100%;
|
14 | }
|
15 | .adm-error-block-image svg,
|
16 | .adm-error-block-image img {
|
17 | height: 100%;
|
18 | }
|
19 | .adm-error-block-description {
|
20 | font-size: var(--adm-font-size-4);
|
21 | color: var(--adm-color-weak);
|
22 | line-height: 1.4;
|
23 | margin-top: 12px;
|
24 | }
|
25 | .adm-error-block-description-title {
|
26 | font-size: var(--adm-font-size-7);
|
27 | }
|
28 | .adm-error-block-description-subtitle {
|
29 | margin-top: 8px;
|
30 | }
|
31 | .adm-error-block-content {
|
32 | margin-top: 12px;
|
33 | }
|
34 | .adm-error-block-full-page {
|
35 | padding-top: calc(50vh - var(--image-height-full-page));
|
36 | }
|
37 | .adm-error-block-full-page .adm-error-block-image {
|
38 | height: var(--image-height-full-page);
|
39 | width: var(--image-width-full-page);
|
40 | }
|
41 | .adm-error-block-full-page .adm-error-block-description {
|
42 | margin-top: 20px;
|
43 | font-size: var(--adm-font-size-main);
|
44 | }
|
45 | .adm-error-block-full-page .adm-error-block-description-title {
|
46 | font-size: 20px;
|
47 | color: var(--adm-color-text);
|
48 | }
|