51 lines
1.1 KiB
CSS
51 lines
1.1 KiB
CSS
.page-error {
|
|
width: 100%;
|
|
min-height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: var(--color-text);
|
|
text-align: center;
|
|
padding: var(--padding);
|
|
overflow-y: auto;
|
|
}
|
|
.page-error-icon {
|
|
color: var(--color-text);
|
|
margin-bottom: 20px;
|
|
}
|
|
.page-error-text {
|
|
font-size: var(--font-size);
|
|
color: var(--color-text-dim);
|
|
line-height: 1.4em;
|
|
}
|
|
.page-error-headline {
|
|
display: inline-block;
|
|
margin-bottom: 10px;
|
|
font-size: var(--font-size-l);
|
|
color: var(--color-text);
|
|
}
|
|
.page-error-button {
|
|
margin-top: 10px;
|
|
}
|
|
.page-error-routes {
|
|
display: grid;
|
|
grid-template-columns: auto auto 1fr;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
text-align: left;
|
|
border-top: 1px solid var(--color-line-onbg);
|
|
border-left: 1px solid var(--color-line-onbg);
|
|
margin-top: 30px;
|
|
}
|
|
.page-error-routes span, .page-error-routes b {
|
|
border: 1px solid var(--color-line-onbg);
|
|
border-left: none;
|
|
border-top: none;
|
|
padding: 8px 10px 6px;
|
|
font-family: Consolas;
|
|
font-size: 12px;
|
|
}
|
|
.page-error-routes span:nth-child(3n+1), .page-error-routes b:nth-child(3n+1) {
|
|
color: var(--color-text-dim);
|
|
} |