mirror of
http://172.20.10.11:3000/gitadmin/INSIGHT-MVP.git
synced 2026-06-25 01:16:40 +02:00
All CRM endpoints tested successfully on insight-dev-01. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
51 lines
1 KiB
CSS
51 lines
1 KiB
CSS
/* ============================================================
|
|
WeatherWidget - Kompakte Wetter-Anzeige
|
|
============================================================ */
|
|
|
|
.weather {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.375rem 0.75rem;
|
|
background: var(--color-bg-card);
|
|
border: 1px solid var(--color-border);
|
|
border-radius: var(--radius-md);
|
|
box-shadow: var(--shadow-sm);
|
|
font-size: 0.875rem;
|
|
color: var(--color-text);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.weatherIcon {
|
|
font-size: 1.25rem;
|
|
line-height: 1;
|
|
}
|
|
|
|
.weatherTemp {
|
|
font-weight: 600;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.weatherLabel {
|
|
color: var(--color-text-secondary);
|
|
font-size: 0.8125rem;
|
|
}
|
|
|
|
.weatherCity {
|
|
color: var(--color-text-muted);
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.hint {
|
|
font-size: 0.8125rem;
|
|
color: var(--color-text-muted);
|
|
text-decoration: none;
|
|
padding: 0.375rem 0.75rem;
|
|
border-radius: var(--radius-md);
|
|
transition: color 0.15s;
|
|
}
|
|
|
|
.hint:hover {
|
|
color: var(--color-primary);
|
|
text-decoration: underline;
|
|
}
|