48 lines
874 B
CSS
48 lines
874 B
CSS
/* HVAC Command Center Custom Styles */
|
|
|
|
body {
|
|
background-color: #f8f9fa;
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Montserrat', sans-serif;
|
|
}
|
|
|
|
.header {
|
|
background: linear-gradient(90deg, #0d6efd, #17a2b8);
|
|
padding: 1.5rem 2rem;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
|
|
}
|
|
|
|
.card-header {
|
|
background-color: #fff;
|
|
border-bottom: 1px solid #e9ecef;
|
|
}
|
|
|
|
.table-hover tbody tr:hover {
|
|
background-color: #f1f3f5;
|
|
}
|
|
|
|
.badge.bg-emergency {
|
|
background-color: #dc3545 !important;
|
|
}
|
|
|
|
.badge.bg-urgent {
|
|
background-color: #ffc107 !important;
|
|
color: #000 !important;
|
|
}
|
|
|
|
.badge.bg-routine {
|
|
background-color: #6c757d !important;
|
|
}
|