-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscore.css
More file actions
149 lines (142 loc) · 2.44 KB
/
score.css
File metadata and controls
149 lines (142 loc) · 2.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/* 기본 설정 (다크모드 기준) */
:root {
--bg: #0c0f13;
--panel: #12161d;
--text: #e7e7ec;
--accent: #6ea8ff; /* 파랑 */
--accent2: #9b7bff; /* 보라 */
--line: rgba(231, 231, 236, 0.2);
}
body {
background-color: var(--bg);
color: var(--text);
font-family: 'Noto Sans KR', sans-serif;
margin: 0;
padding: 20px;
text-align: center;
}
/* 뒤로가기 버튼 */
.back-btn {
position: absolute;
top: 20px;
left: 20px;
background: none;
border: 1px solid var(--line);
color: var(--text);
padding: 8px 16px;
border-radius: 20px;
cursor: pointer;
}
header {
margin-top: 40px;
margin-bottom: 30px;
}
header h1 {
letter-spacing: 5px;
margin-bottom: 5px;
}
header p {
color: #a2a8b4;
font-size: 14px;
margin: 0;
}
/* 메인 컨테이너 */
#score-container {
max-width: 600px;
margin: 0 auto;
text-align: left;
}
/* 요약 카드 */
.summary-cards {
display: flex;
gap: 15px;
margin-bottom: 30px;
}
.card {
flex: 1;
background: var(--panel);
padding: 15px;
border-radius: 12px;
border: 1px solid var(--line);
text-align: center;
}
.card span {
display: block;
font-size: 13px;
color: #a2a8b4;
margin-bottom: 5px;
}
.card strong {
font-size: 24px;
}
.card .sub {
font-size: 14px;
color: #a2a8b4;
font-weight: normal;
}
.accent {
color: var(--accent);
}
/* 그래프 */
.chart-section {
margin-bottom: 30px;
}
.bar-chart {
display: flex;
justify-content: space-around;
align-items: flex-end;
height: 180px;
border-bottom: 2px solid var(--line);
padding-bottom: 5px;
}
.bar-item {
width: 40px;
background: var(--accent);
border-radius: 5px 5px 0 0;
transition: height 1s ease;
position: relative;
display: flex;
justify-content: center;
}
.bar-text {
position: absolute;
bottom: -25px;
font-size: 12px;
color: #a2a8b4;
width: 60px;
text-align: center;
}
/* 테이블 */
.score-table {
width: 100%;
border-collapse: collapse;
font-size: 14px;
}
.score-table th {
color: #a2a8b4;
text-align: left;
padding: 10px;
border-bottom: 1px solid var(--line);
}
.score-table td {
padding: 12px 10px;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.badge {
padding: 3px 8px;
border-radius: 6px;
font-weight: bold;
font-size: 12px;
}
.g-1 {
background: rgba(110, 168, 255, 0.2);
color: #6ea8ff;
}
.g-2 {
background: rgba(155, 123, 255, 0.2);
color: #9b7bff;
}
.g-3 {
background: rgba(255, 255, 255, 0.1);
color: #a2a8b4;
}