36998-vm/assets/css/custom.css
Flatlogic Bot ce816a917b beta
2025-12-16 14:45:12 +00:00

116 lines
2.4 KiB
CSS

/* ConstructApp Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root {
--primary-color: #4A90E2;
--secondary-color: #50E3C2;
--bg-color: #F4F8FA;
--surface-color: #FFFFFF;
--text-color: #242A30;
--border-radius: 12px;
}
body {
font-family: 'Poppins', sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
}
.navbar {
background-color: var(--surface-color);
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.navbar-brand {
font-weight: 600;
color: var(--primary-color) !important;
}
.main-content {
padding-top: 2rem;
padding-bottom: 2rem;
}
.page-header {
margin-bottom: 2rem;
}
.page-header h1 {
font-weight: 700;
}
.card {
border: none;
border-radius: var(--border-radius);
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.table {
border-collapse: separate;
border-spacing: 0 10px;
}
.table thead th {
border: none;
font-weight: 600;
color: #90a4ae;
font-size: 0.9rem;
text-transform: uppercase;
}
.table tbody tr {
background-color: var(--surface-color);
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
border-radius: var(--border-radius);
}
.table tbody td {
border: none;
vertical-align: middle;
padding: 1rem;
}
.table tbody tr:hover {
transform: translateY(-2px);
box-shadow: 0 4px 10px rgba(0,0,0,0.08);
transition: all 0.2s ease-in-out;
}
.table .status {
padding: 0.25rem 0.75rem;
border-radius: 1rem;
font-size: 0.8rem;
font-weight: 500;
}
.status-in-progress { background-color: #e6f7ff; color: #1890ff; }
.status-not-started { background-color: #fffbe6; color: #faad14; }
.status-completed { background-color: #f6ffed; color: #52c41a; }
.btn-primary {
background-color: var(--primary-color);
border-color: var(--primary-color);
border-radius: 8px;
padding: 0.75rem 1.5rem;
font-weight: 500;
transition: all 0.2s ease;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 4px 10px rgba(74, 144, 226, 0.4);
}
.modal-content {
border-radius: var(--border-radius);
border: none;
}
.modal-header {
border-bottom: none;
}
.form-control {
border-radius: 8px;
padding: 0.75rem 1rem;
}
.form-control:focus {
box-shadow: 0 0 0 0.25rem rgba(74, 144, 226, 0.25);
border-color: var(--primary-color);
}