fix: 큰 화면 CSS 라이트 모드 대응

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
th-kim0823
2026-04-27 20:56:02 +09:00
parent 50615e0069
commit 02e67baa77

17
app.py
View File

@@ -34,23 +34,26 @@ PRIZE_PRIORITY = ["utility_team", "polish_team", "fun_team"]
SHOW_CSS = """
<style>
.show-stage-title { font-size: 64px; text-align: center; padding: 16px 0; font-weight: 800; }
.show-stage-sub { font-size: 24px; text-align: center; color: #888; padding-bottom: 24px; }
.show-stage-sub { font-size: 24px; text-align: center; color: #555; padding-bottom: 24px; }
.show-team-card {
font-size: 24px;
padding: 18px 14px;
border-radius: 14px;
background: #1a1a2a;
border: 1px solid #333;
background: #f4f4f8;
border: 1px solid #ddd;
min-height: 220px;
color: #222;
}
.show-team-name { font-size: 32px; font-weight: 700; text-align: center; margin-bottom: 12px; color: #ffb84d; }
.show-team-member { font-size: 22px; line-height: 1.6; text-align: center; }
.show-team-name { font-size: 32px; font-weight: 700; text-align: center; margin-bottom: 12px; color: #d97706; }
.show-team-member { font-size: 22px; line-height: 1.6; text-align: center; color: #222; }
.show-info-box {
font-size: 26px;
padding: 22px;
border-radius: 12px;
background: #1f1f2f;
background: #f0f4f8;
border: 1px solid #d8e0e8;
margin-top: 24px;
color: #222;
}
.show-cat-card {
border-radius: 14px;
@@ -66,7 +69,7 @@ SHOW_CSS = """
.show-cat-tone { font-size: 14px; opacity: 0.85; margin-bottom: 12px; }
.show-cat-item { font-size: 17px; line-height: 1.45; padding: 4px 0; }
.show-vote-counter { font-size: 96px; text-align: center; font-weight: 900; padding: 16px 0; }
.show-vote-caption { font-size: 36px; text-align: center; color: #ccc; padding: 12px 0; }
.show-vote-caption { font-size: 36px; text-align: center; color: #555; padding: 12px 0; }
</style>
"""