Spaces:
Running
Running
File size: 1,725 Bytes
43b66f1 |
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 |
/* 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;
}
|