govorov/frontend/src/pages/CalculationResult.module.css

37 lines
802 B
CSS
Raw Normal View History

2025-04-07 09:02:54 +02:00
.resultContainer {
/* Общий стиль страницы */
}
.detailSection {
margin-bottom: 25px;
padding-bottom: 15px;
border-bottom: 1px solid #eee;
}
.detailSection:last-child {
border-bottom: none; /* Убрать границу у последнего блока */
margin-bottom: 0;
padding-bottom: 0;
}
.detailTitle {
font-weight: bold;
margin-bottom: 8px;
color: #495057; /* Цвет заголовка секции */
font-size: 1.1em;
}
.detailValue {
color: #343a40; /* Цвет значения */
/* Можно добавить стили для лучшего отображения данных */
}
.loading,
.error {
margin-top: 20px;
font-style: italic;
color: #6c757d;
}
.error {
color: #dc3545;
font-weight: bold;
}