Files
hot_comment_radar/app/static/app.css
T

102 lines
1.6 KiB
CSS

body {
background: #f5f7fb;
color: #172033;
}
.card {
border-radius: 8px;
border: 1px solid #dfe5ef;
box-shadow: 0 10px 28px rgba(31, 42, 68, 0.06);
}
.navbar {
background: #fff !important;
}
.hero-band {
align-items: flex-end;
background:
linear-gradient(135deg, rgba(12, 22, 40, 0.92), rgba(29, 80, 108, 0.78)),
url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1600&q=80");
background-position: center;
background-size: cover;
border-radius: 8px;
color: #fff;
display: flex;
justify-content: space-between;
min-height: 300px;
padding: 42px;
}
.hero-copy {
max-width: 680px;
}
.hero-copy h1 {
font-size: 48px;
font-weight: 700;
letter-spacing: 0;
margin-bottom: 14px;
}
.hero-copy p:not(.eyebrow) {
color: rgba(255, 255, 255, 0.84);
font-size: 18px;
line-height: 1.7;
margin: 0;
}
.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
}
.eyebrow {
color: #71d4c7;
font-size: 13px;
font-weight: 700;
letter-spacing: 0;
text-transform: uppercase;
}
.metric-box {
background: #f8fafc;
border: 1px solid #e3e9f2;
border-radius: 8px;
height: 100%;
padding: 14px;
}
.status-panel {
background: #fff;
border: 1px solid #dfe5ef;
border-radius: 8px;
padding: 32px;
}
.status-panel-danger {
border-color: #f1b8b8;
}
.task-progress {
height: 10px;
}
.report-progress {
height: 10px;
}
@media (max-width: 768px) {
.hero-band {
align-items: flex-start;
flex-direction: column;
min-height: 360px;
padding: 28px;
}
.hero-copy h1 {
font-size: 36px;
}
}