You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

102 lines
1.8 KiB

.error-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
background-color: var(--background-color);
}
.error-content {
max-width: 600px;
text-align: center;
padding: 3rem;
background-color: var(--card-background);
border-radius: 12px;
border: 1px solid var(--border-color);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
position: relative;
}
.error-code {
font-size: 6rem;
font-weight: 700;
color: var(--primary-color);
margin: 0;
line-height: 1;
}
.error-title {
font-size: 2rem;
color: var(--text-primary);
margin: 1rem 0;
}
.error-message {
color: var(--text-secondary);
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 2rem;
}
.error-actions {
display: flex;
gap: 1rem;
justify-content: center;
}
.error-button {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1.5rem;
border-radius: 8px;
font-size: 1rem;
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
border: 1px solid var(--border-color);
background-color: var(--card-background);
color: var(--text-primary);
text-decoration: none;
}
.error-button:hover {
font-size: 1.1rem;
background-color: var(--primary-color);
color: var(--text-secondary);
border-color: var(--primary-color);
}
.button-icon {
font-size: 1.2rem;
}
.theme-toggle {
position: absolute;
top: 1rem;
right: 1rem;
}
@media (max-width: 640px) {
.error-content {
padding: 2rem;
}
.error-code {
font-size: 4rem;
}
.error-title {
font-size: 1.5rem;
}
.error-actions {
flex-direction: column;
}
.error-button {
width: 100%;
justify-content: center;
}
}