webdev-exam-2025-1-devik/css/account.css

53 lines
No EOL
941 B
CSS
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* Прикрепление footer внизу страницы с flexbox */
body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
body > .container {
flex: 1;
}
.container {
max-width: 1200px;
}
.card {
border: none;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
.card-header {
background-color: white;
border-bottom: 1px solid #dee2e6;
padding: 1.25rem;
}
#emptyState i {
font-size: 4rem;
}
.table th {
font-weight: 600;
color: var(--dark-text);
border-bottom: 2px solid #dee2e6;
}
.btn-group-sm .btn {
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
}
/* Вертикальное расположение кнопок на мобильных */
@media (max-width: 768px) {
.btn-group {
flex-direction: column;
}
.btn-group .btn {
border-radius: 0.25rem !important;
margin-bottom: 0.25rem;
}
}