DataHubHub / assets /custom.css
whackthejacker's picture
Upload 34 files
43b66f1 verified
/* Custom styles for ML Dataset & Code Generation Manager */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 700;
color: #1A1C1F;
}
body {
font-family: 'Inter', sans-serif;
color: #1A1C1F;
background-color: #F8F9FA;
}
.stButton button {
background-color: #2563EB;
color: white;
border-radius: 4px;
border: none;
padding: 0.5rem 1rem;
font-weight: 600;
}
.stButton button:hover {
background-color: #1D4ED8;
}
/* Card styling */
.card {
background-color: white;
border-radius: 8px;
padding: 1.5rem;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
margin-bottom: 1rem;
}
/* Accent colors */
.accent-primary {
color: #2563EB;
}
.accent-secondary {
color: #84919A;
}
.accent-success {
color: #10B981;
}
.accent-warning {
color: #F59E0B;
}
.accent-danger {
color: #EF4444;
}