style: match central stats bar to F12 poly-stat-item specs

Apply reference gap, colors, pipe separator, dividers, text-shadow, and click-stat padding.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
EENE Dashboard
2026-06-05 23:48:20 +09:00
parent 7a3b2c5dfe
commit 273f50edd3
2 changed files with 41 additions and 12 deletions

View File

@@ -103,16 +103,47 @@ body,
/* F12 — 통계 영역 텍스트 그림자 */
.header-stat-text {
text-shadow:
-1px -1px 1px rgba(0, 0, 0, 0.25),
1px -1px 1px rgba(0, 0, 0, 0.25),
-1px 1px 1px rgba(0, 0, 0, 0.25),
1px 1px 1px rgba(0, 0, 0, 0.25);
-1px -1px 0 #00000040,
1px -1px 0 #00000040,
-1px 1px 0 #00000040,
1px 1px 0 #00000040;
}
/* F12 — poly-stat-item (중앙 통계 한 줄) */
.poly-stat-item {
display: flex;
align-items: center;
gap: 8px;
font-size: 18px;
white-space: nowrap;
color: #e6eae3;
}
.poly-stat-quarter {
flex-shrink: 0;
font-weight: 600;
color: rgba(255, 255, 255, 0.77);
}
.poly-stat-pipe {
flex-shrink: 0;
color: rgba(238, 234, 227, 0.4);
}
.poly-stat-divider {
flex-shrink: 0;
width: 1px;
height: 16px;
margin: 0 4px;
background-color: rgba(230, 234, 227, 0.4);
}
/* F12 — poly-click-stat */
.poly-click-stat {
color: rgba(255, 255, 255, 0.99);
font-weight: 400;
padding: 2px 6px;
border-radius: 4px;
border: 1px solid transparent;
background: transparent;
transition: all 0.15s ease;