File size: 1,204 Bytes
c2c876f a818e45 c2c876f a818e45 c2c876f a818e45 c2c876f a818e45 c2c876f a818e45 c2c876f a818e45 c2c876f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
}
.hero-section {
background-image: url('http://static.photos/automotive/1200x630/1');
background-size: cover;
background-position: center;
background-blend-mode: overlay;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #dc2626;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #b91c1c;
}
/* Animation for cards */
.card-hover {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
/* Status badges */
.status-badge {
display: inline-block;
padding: 0.25rem 0.5rem;
border-radius: 0.25rem;
font-size: 0.75rem;
font-weight: 600;
}
.status-up {
background-color: #d1fae5;
color: #065f46;
}
.status-down {
background-color: #fee2e2;
color: #b91c1c;
}
.status-pending {
background-color: #fef3c7;
color: #92400e;
} |