Update gui.py
Browse files
gui.py
CHANGED
@@ -295,6 +295,46 @@ def create_interface():
|
|
295 |
font-size: 1.8rem; /* Mobil için biraz daha küçük başlık */
|
296 |
}
|
297 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
298 |
"""
|
299 |
|
300 |
# Arayüz tasarımı
|
|
|
295 |
font-size: 1.8rem; /* Mobil için biraz daha küçük başlık */
|
296 |
}
|
297 |
}
|
298 |
+
|
299 |
+
/* Progress Bar Stilleri (Görseldeki tasarıma uygun) */
|
300 |
+
.gr-progress-bar {
|
301 |
+
background-color: #1a1a1a !important; /* Koyu arka plan */
|
302 |
+
border-radius: 5px !important;
|
303 |
+
border: 1px solid #333 !important; /* Hafif sınır */
|
304 |
+
height: 20px !important;
|
305 |
+
overflow: hidden !important;
|
306 |
+
position: relative !important;
|
307 |
+
}
|
308 |
+
.gr-progress-bar .progress {
|
309 |
+
background-color: #007bff !important; /* Mavi ilerleme çubuğu */
|
310 |
+
height: 100% !important;
|
311 |
+
border-radius: 5px !important;
|
312 |
+
transition: width 0.3s ease !important;
|
313 |
+
}
|
314 |
+
.gr-progress-bar .progress-text {
|
315 |
+
position: absolute !important;
|
316 |
+
top: 0 !important;
|
317 |
+
left: 0 !important;
|
318 |
+
width: 100% !important;
|
319 |
+
height: 100% !important;
|
320 |
+
display: flex !important;
|
321 |
+
align-items: center !important;
|
322 |
+
justify-content: center !important;
|
323 |
+
color: #ffffff !important; /* Beyaz metin */
|
324 |
+
font-size: 12px !important;
|
325 |
+
font-weight: bold !important;
|
326 |
+
text-shadow: 0 0 2px rgba(0, 0, 0, 0.5) !important; /* Hafif gölge */
|
327 |
+
}
|
328 |
+
.gr-progress-bar .progress-stats {
|
329 |
+
position: absolute !important;
|
330 |
+
bottom: -20px !important; /* Altında adım ve süre bilgisi */
|
331 |
+
left: 0 !important;
|
332 |
+
width: 100% !important;
|
333 |
+
text-align: center !important;
|
334 |
+
color: #007bff !important; /* Mavi metin */
|
335 |
+
font-size: 10px !important;
|
336 |
+
font-weight: normal !important;
|
337 |
+
}
|
338 |
"""
|
339 |
|
340 |
# Arayüz tasarımı
|