监控页面布局对齐文档:时区后缀、暖色高温、新高紫光、趋势同行

- 当地时间加时区缩写(KST/JST/HKT 等)
- 温度 >= 30°C 暖橙色高亮
- 新高标记:紫色边框 + 紫色温度数字
- "今日最高" 与趋势箭头同行,对齐 docs 卡片布局
- CSS: temp-value.warm, new-high-card/high-val 样式
This commit is contained in:
2569718930@qq.com
2026-05-13 20:03:18 +08:00
parent 239c9c446d
commit ded09df749
4 changed files with 34 additions and 34 deletions
+14 -1
View File
@@ -95,6 +95,9 @@ body {
background: rgba(124, 58, 237, 0.18);
color: #a78bfa;
}
.new-high-card {
border-color: rgba(124, 58, 237, 0.25);
}
/* ── temp ── */
.card-temp {
@@ -113,6 +116,12 @@ body {
color: #3a4050;
font-size: 28px;
}
.temp-value.warm {
color: #f59e0b;
}
.temp-value.new-high-val {
color: #c084fc;
}
.temp-unit {
font-size: 18px;
@@ -130,7 +139,8 @@ body {
.meta-row {
display: flex;
justify-content: space-between;
align-items: baseline;
gap: 6px;
font-size: 13px;
}
@@ -146,6 +156,9 @@ body {
.meta-row .value.na {
color: #3a4050;
}
.meta-row .trend {
margin-left: auto;
}
/* ── trend ── */
.trend { font-size: 15px; font-weight: 600; }