Files
breadcrumb-the-shire/web/css/pages/app-error.css

39 lines
704 B
CSS
Raw Normal View History

.error-page {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100dvh;
padding: 2rem;
text-align: center;
}
.error-page__code {
font-size: 5rem;
font-weight: 700;
line-height: 1;
color: var(--color-text-muted);
}
.error-page__message {
margin-top: 1rem;
font-size: 1.125rem;
color: var(--color-text);
}
.error-page__back {
display: inline-block;
margin-top: 2rem;
padding: 0.5rem 1.25rem;
font-size: 0.875rem;
text-decoration: none;
border: 1px solid var(--color-border);
border-radius: 0.375rem;
color: var(--color-text);
background: var(--color-bg-surface);
}
.error-page__back:hover {
opacity: 0.8;
}