# -*- coding: utf-8 -*- """Gradio frontend for the MLE‑Dojo leaderboard. Changes made in this version ---------------------------- 1. **Fixed CSS syntax errors** (missing semicolons, misplaced `!important`). 2. **Introduced a single, clean rule‑set** for the introduction block so the font size, family and alignment are now reliably applied. 3. All new comments are in English for clarity. 4. Adjusted font sizes for Radio button labels per user request. 5. **Added dark mode support** using `@media (prefers-color-scheme: dark)` to override conflicting styles and ensure readability in dark themes. """ import gradio as gr import pandas as pd from apscheduler.schedulers.background import BackgroundScheduler # --------------------------------------------------------------------------- # Optional imports from the project package. If they fail we fall back to # placeholders so the app still launches locally. # --------------------------------------------------------------------------- try: from src.about import ( CITATION_BUTTON_LABEL, CITATION_BUTTON_TEXT, EVALUATION_QUEUE_TEXT, # still referenced in commented‑out submit tab INTRODUCTION_TEXT, LLM_BENCHMARKS_TEXT, TITLE, # contains
Welcome to the MLE‑Dojo Benchmark Leaderboard (placeholder).
" "Edit src/about.py
to change this text.