File size: 7,196 Bytes
ed2eb44
 
 
 
 
 
 
 
 
 
 
 
 
 
86637fc
ed2eb44
 
86637fc
ed2eb44
 
 
86637fc
ed2eb44
86637fc
ed2eb44
 
 
 
 
 
 
 
 
 
 
a10c4ff
 
 
 
 
 
 
 
 
 
86637fc
 
a10c4ff
86637fc
a10c4ff
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ed2eb44
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a10c4ff
ed2eb44
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
"""
CSS styles for UI components in the leaderboard application.
"""
from src.utils.config import dark_theme

def get_container_styles():
    """
    Get CSS styles for page containers
    
    Returns:
        str: CSS string for containers
    """
    return f"""
    .title-container {{
        padding: 0.75rem 0 1.5rem 0;
        text-align: center;
        color: white;
        margin-bottom: 0.5rem;
    }}
    
    .title {{
        font-size: 64px;
        font-weight: 700;
        margin-bottom: 15px;
        color: {dark_theme['title_color']};
    }}
    
    .subtitle {{
        font-size: 20px;
        font-weight: 400;
        opacity: 0.9;
        color: {dark_theme['subtitle_color']};
    }}
    """

def get_links_bar_styles():
    """
    Get CSS styles for the links bar below the header
    
    Returns:
        str: CSS string for links bar
    """
    return f"""
    .links-bar {{
        text-align: center;
        padding: 0 0 15px 0;
        margin-bottom: 25px;
        font-size: 14px;
        border-bottom: 1px solid {dark_theme['border']};
    }}
    
    .link-item {{
        color: {dark_theme['primary']};
        text-decoration: none;
        transition: opacity 0.2s ease;
        margin: 0 3px;
        font-weight: 500;
    }}
    
    .link-item:hover {{
        opacity: 0.8;
        text-decoration: underline;
    }}
    
    .info-item {{
        color: {dark_theme['text_color']};
        margin: 0 3px;
        font-weight: 400;
    }}
    """

def get_card_styles():
    """
    Get CSS styles for cards
    
    Returns:
        str: CSS string for cards
    """
    return f"""
    .card {{
        background-color: {dark_theme['card_bg']};
        border-radius: 12px;
        padding: 24px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
        margin-bottom: 24px;
        transition: transform 0.2s, box-shadow 0.2s;
    }}
    
    .card:hover {{
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    }}
    
    .card-title {{
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 16px;
        color: {dark_theme['text_color']};
        display: flex;
        align-items: center;
    }}
    
    .card-title-icon {{
        margin-right: 10px;
        font-size: 22px;
    }}
    """

def get_task_card_styles():
    """
    Get CSS styles for task cards
    
    Returns:
        str: CSS string for task cards
    """
    return f"""
    .task-card {{
        background-color: {dark_theme['card_bg']};
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
        margin-bottom: 16px;
        border-left: 4px solid {dark_theme['task_border']};
    }}
    
    .task-title {{
        font-size: 18px;
        font-weight: 600;
        color: {dark_theme['task_title']};
        margin-bottom: 8px;
    }}
    
    .task-description {{
        font-size: 15px;
        color: {dark_theme['text_color']};
        line-height: 1.5;
    }}
    """

def get_button_styles():
    """
    Get CSS styles for buttons
    
    Returns:
        str: CSS string for buttons
    """
    return f"""
    /* Button styling - completely new and modern */
    div.stButton > button {{
        background-color: {dark_theme['card_bg']};
        color: {dark_theme['text_color']};
        border: 1px solid {dark_theme['border']};
        border-radius: 8px;
        padding: 8px 16px;
        font-size: 14px;
        font-weight: 500;
        margin: 4px;
        transition: all 0.2s ease;
    }}
    
    div.stButton > button:hover {{
        background-color: {dark_theme['hover']};
        border-color: {dark_theme['border']};
        transform: translateY(-1px);
    }}
    
    /* Active button styling */
    div.stButton > button.selected {{
        background-color: {dark_theme['primary']} !important;
        color: white !important;
        border-color: {dark_theme['primary']} !important;
    }}
    """

def get_tabs_styles():
    """
    Get CSS styles for tabs
    
    Returns:
        str: CSS string for tabs
    """
    return f"""
    /* Tabs styling */
    .stTabs [data-baseweb="tab-list"] {{
        gap: 8px;
        margin-bottom: 20px;
    }}
    
    .stTabs [data-baseweb="tab"] {{
        border-radius: 8px 8px 0 0;
        padding: 12px 24px;
        font-weight: 500;
        background-color: {dark_theme['hover']};
        color: {dark_theme['text_color']};
    }}
    
    .stTabs [data-baseweb="tab"][aria-selected="true"] {{
        background-color: {dark_theme['primary']};
        color: white;
    }}
    
    .stTabs [data-baseweb="tab-highlight"] {{
        background-color: transparent;
    }}
    """

def get_alert_styles():
    """
    Get CSS styles for alerts and information boxes
    
    Returns:
        str: CSS string for alerts
    """
    return f"""
    /* Alert/info box styling */
    .info-box {{
        background-color: {dark_theme['info_bg']};
        border-left: 4px solid {dark_theme['info_border']};
        border-radius: 8px;
        padding: 16px;
        margin-bottom: 16px;
        color: {dark_theme['text_color']};
    }}
    
    .warning-box {{
        background-color: {dark_theme['warning_bg']};
        border-left: 4px solid {dark_theme['warning_border']};
        border-radius: 8px;
        padding: 16px;
        margin-bottom: 16px;
        color: {dark_theme['text_color']};
    }}
    """

def get_footer_styles():
    """
    Get CSS styles for the footer
    
    Returns:
        str: CSS string for the footer
    """
    return f"""
    /* Footer styling */
    .footer {{
        text-align: center;
        padding: 24px;
        margin-top: 40px;
        color: {dark_theme['footer_color']};
        font-size: 14px;
        border-top: 1px solid {dark_theme['footer_border']};
    }}
    """

def get_all_component_styles():
    """
    Get all component styles combined
    
    Returns:
        str: Combined CSS string for all components
    """
    styles = [
        get_container_styles(),
        get_links_bar_styles(),
        get_card_styles(),
        get_task_card_styles(),
        get_button_styles(),
        get_tabs_styles(),
        get_alert_styles(),
        get_footer_styles(),
        get_metric_definition_styles()
    ]
    
    return '\n'.join(styles)

def get_metric_definition_styles():
    """
    Get CSS styles for metric definition component
    
    Returns:
        str: CSS string for metric definition
    """
    return f"""
    /* Metric definition styling */
    .metric-definition {{
        margin-top: 20px;
        background-color: {dark_theme['card_bg']};
        border-radius: 8px;
        padding: 16px 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-left: 4px solid {dark_theme['secondary']};
    }}
    
    .metric-definition h4 {{
        color: {dark_theme['secondary']};
        margin-top: 0;
        margin-bottom: 8px;
        font-size: 18px;
        font-weight: 600;
    }}
    
    .metric-definition p {{
        color: {dark_theme['text_color']};
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 0;
    }}
    """