Export data spreadsheet
This commit is contained in:
fraxle
2026-06-05 13:37:49 +01:00
parent 8540ae6782
commit 6a64e687b3
6 changed files with 446 additions and 8 deletions
-1
View File
@@ -79,7 +79,6 @@ body {
.utci-shell {
position: relative;
z-index: 1;
max-width: 1400px;
margin: 0 auto;
}
+59
View File
@@ -1258,6 +1258,65 @@
width: 100%;
}
/* ── Pro: Export day data ──────────────────────────────────────────────── */
.export-panel {
margin-top: 10px;
background: #fffcf2;
border: 1px solid #c9b08a;
border-radius: 4px;
padding: 12px 14px;
}
.export-day-btn {
display: flex;
align-items: center;
gap: 7px;
width: 100%;
padding: 8px 12px;
background: linear-gradient(135deg, #c8922a 0%, #a06e18 100%);
color: #fffcf2;
border: none;
border-radius: 4px;
font-family: Manrope, sans-serif;
font-size: 13px;
font-weight: 600;
cursor: pointer;
letter-spacing: 0.02em;
transition: opacity 0.15s;
}
.export-day-btn:hover {
opacity: 0.88;
}
.export-day-btn:active {
opacity: 0.75;
}
.export-day-btn--locked {
background: linear-gradient(135deg, #c0b090 0%, #9a8060 100%);
cursor: pointer;
opacity: 0.75;
}
.export-day-btn--locked:hover {
opacity: 0.90;
}
.export-day-btn__icon {
font-size: 15px;
line-height: 1;
}
.export-day-hint {
margin-top: 7px;
font-family: Manrope, sans-serif;
font-size: 10px;
color: #9a7d5a;
text-align: center;
letter-spacing: 0.03em;
}
.insight-panel {
background: #fffcf2;
border: 1px solid #c9b08a;