style: apply exact F12 DevTools values from Design Planning header

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
EENE Dashboard
2026-06-05 23:30:09 +09:00
parent dd404d3fe8
commit fb1248db75
2 changed files with 119 additions and 44 deletions

View File

@@ -59,3 +59,59 @@ body,
background-color: #ffeb3b;
box-shadow: 0 0 8px #ffeb3b, inset 0 1px 2px rgba(255, 255, 255, 0.4);
}
/* F12 Design Planning Hub — 타이틀 */
.main_tit {
color: #bad8ca;
font-weight: 700;
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);
}
/* 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);
}
/* F12 — poly-click-stat */
.poly-click-stat {
color: rgba(255, 255, 255, 0.99);
font-weight: 400;
border: 1px solid transparent;
background: transparent;
transition: all 0.15s ease;
}
.poly-click-stat:hover {
color: #fff;
background: #1b543b;
border-color: #1d6947;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
.poly-click-stat.active {
color: #fff;
font-weight: 600;
background: linear-gradient(
180deg,
rgba(0, 0, 0, 0.54) 0%,
rgba(0, 0, 0, 0.25) 20%,
rgba(0, 0, 0, 0.09) 80%,
rgba(0, 0, 0, 0.54) 100%
);
border: 1px solid rgba(0, 0, 0, 0.86);
box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}
.poly-click-stat.issue {
background: linear-gradient(180deg, #337c5f 0%, #1c4638 100%);
border: 1px solid #1d6947;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}