AI-hiring / static /css /style.css
d-e-e-k-11's picture
Upload folder using huggingface_hub
c9f05a2 verified
:root {
--primary: #6366f1;
--secondary: #a855f7;
--bg-dark: #0f172a;
--card-bg: rgba(30, 41, 59, 0.7);
--text: #f8fafc;
--text-muted: #94a3b8;
--success: #10b981;
--warning: #f59e0b;
--danger: #ef4444;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
}
body {
background: var(--bg-dark);
color: var(--text);
min-height: 100vh;
padding: 2rem;
background-image: radial-gradient(circle at top right, rgba(99, 102, 241, 0.1), transparent),
radial-gradient(circle at bottom left, rgba(168, 85, 247, 0.1), transparent);
}
.container {
max-width: 1200px;
margin: 0 auto;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 3rem;
}
h1 {
font-size: 2.5rem;
background: linear-gradient(to right, var(--primary), var(--secondary));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 800;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 1.5rem;
margin-bottom: 3rem;
}
.stat-card {
background: var(--card-bg);
padding: 1.5rem;
border-radius: 1rem;
border: 1px border rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
transition: transform 0.3s ease;
}
.stat-card:hover {
transform: translateY(-5px);
}
.stat-value {
font-size: 2rem;
font-weight: 700;
margin: 0.5rem 0;
}
.stat-label {
color: var(--text-muted);
font-size: 0.875rem;
}
.main-grid {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 1.5rem;
}
.card {
background: var(--card-bg);
padding: 2rem;
border-radius: 1rem;
border: 1px solid rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
margin-bottom: 1.5rem;
}
.card h2 {
font-size: 1.25rem;
margin-bottom: 1.5rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.chart-container {
height: 300px;
position: relative;
}
.audit-table {
width: 100%;
border-collapse: collapse;
}
.audit-table th {
text-align: left;
color: var(--text-muted);
padding-bottom: 1rem;
font-weight: 500;
}
.audit-table td {
padding: 1rem 0;
border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.impact-badge {
padding: 0.25rem 0.75rem;
border-radius: 2rem;
font-size: 0.75rem;
font-weight: 600;
}
.impact-good {
background: rgba(16, 185, 129, 0.2);
color: #10b981;
}
.impact-warn {
background: rgba(245, 158, 11, 0.2);
color: #f59e0b;
}
.impact-bad {
background: rgba(239, 68, 68, 0.2);
color: #ef4444;
}
.form-group {
margin-bottom: 1rem;
}
label {
display: block;
margin-bottom: 0.5rem;
font-size: 0.875rem;
color: var(--text-muted);
}
input,
select {
width: 100%;
background: rgba(15, 23, 42, 0.5);
border: 1px solid rgba(255, 255, 255, 0.1);
padding: 0.75rem;
border-radius: 0.5rem;
color: white;
outline: none;
}
button {
width: 100%;
padding: 1rem;
background: linear-gradient(to right, var(--primary), var(--secondary));
border: none;
border-radius: 0.5rem;
color: white;
font-weight: 600;
cursor: pointer;
transition: opacity 0.3s;
}
button:hover {
opacity: 0.9;
}
#predictionResult {
margin-top: 1.5rem;
padding: 1rem;
border-radius: 0.5rem;
text-align: center;
display: none;
}
.shimmer {
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
background-size: 200% 100%;
animation: shimmer 2s infinite;
}
@keyframes shimmer {
0% {
background-position: -200% 0;
}
100% {
background-position: 200% 0;
}
}