34540-vm/assets/css/custom.css
2025-10-01 06:57:10 +00:00

70 lines
1.2 KiB
CSS

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
body {
background-color: #F8F9FA;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
color: #212529;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Georgia', serif;
}
.navbar {
box-shadow: 0 2px 4px rgba(0,0,0,.05);
}
.card {
border: none;
border-radius: 0.5rem;
box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.table {
--bs-table-bg: transparent;
--bs-table-striped-bg: rgba(13, 110, 253, 0.03);
}
.table th {
font-weight: 600;
}
.btn-primary {
transition: all 0.3s ease;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(13, 110, 253, 0.2);
}
.form-control:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
border-color: #86b7fe;
}
.action-icon {
color: #6c757d;
text-decoration: none;
transition: color 0.2s ease;
}
.action-icon:hover {
color: #0d6efd;
}
.sortable-header {
cursor: pointer;
user-select: none;
}
.sortable-header:hover {
background-color: rgba(0,0,0,0.05);
}
.sortable-header .bi {
font-size: 0.8em;
margin-left: 4px;
}