Files
santeh-ray/static/css/error.css
Azimkin a2702b13c7
All checks were successful
Build and Push Docker Image / build (push) Successful in 26s
feat: создать базовый шаблон и структуру для страницы каталога
- Создан шаблон `catalog/index.html` с поддержкой хлебных крошек и активного раздела
- Добавлены модели `Category` и `Item` с настройкой админ-панели
- Реализован обработчик URL для отображения категорий и страницы каталога
- Добавлены стили `catalog.css` и `error.css` для новых элементов
- Переведён проект в production режим (DEBUG=False)
2026-04-07 22:30:30 +02:00

50 lines
997 B
CSS

.error-page {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding-bottom: 100px;
& > .error-code {
font-size: 20rem;
color: #63768d;
margin: 0;
}
& > .error-subtitle {
font-size: 2rem;
color: #63768d;
}
& > .error-description {
margin-top: 20px;
font-size: 1.1rem;
text-align: center;
color: #554971;
}
& > .error-actions {
margin-top: 20px;
& > a {
display: inline-flex;
padding: 20px 30px;
width: 300px;
margin: 0 10px;
align-items: center;
justify-content: center;
}
& > .error-btn-1 {
background: #63768d;
color: white;
border: 0;
}
& > .error-btn-2 {
background: #ffffff;
color: #63768d;
border: 1px solid #63768d;
}
}
}