From ec11263023ab31e6309254770b1286b8a14cfa6a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 14 Feb 2026 14:06:11 +0000 Subject: [PATCH 1/2] Update leaderboard via workflow --- leaderboard/leaderboard.csv | 1 + leaderboard/leaderboard.md | 1 + 2 files changed, 2 insertions(+) diff --git a/leaderboard/leaderboard.csv b/leaderboard/leaderboard.csv index f12f8a3..d25bead 100644 --- a/leaderboard/leaderboard.csv +++ b/leaderboard/leaderboard.csv @@ -1,3 +1,4 @@ submission,0.8134 submission,0.8134 submission,0.8134 +submission,0.8134 diff --git a/leaderboard/leaderboard.md b/leaderboard/leaderboard.md index d8e5521..0f109b1 100644 --- a/leaderboard/leaderboard.md +++ b/leaderboard/leaderboard.md @@ -2,4 +2,5 @@ |------|-------| | submission | 0.8134 | | submission | 0.8134 | +| submission | 0.8134 | | submission | 0.8134 | \ No newline at end of file From 29fb4ab4e65f98694f86f567233e9d089915a368 Mon Sep 17 00:00:00 2001 From: Nour Majdoub <154745715+NoorMajdoub@users.noreply.github.com> Date: Sat, 14 Feb 2026 15:25:46 +0100 Subject: [PATCH 2/2] Update leaderboard.css --- docs/leaderboard.css | 93 ++++++++++++++++++++++++++++++++++++++------ 1 file changed, 81 insertions(+), 12 deletions(-) diff --git a/docs/leaderboard.css b/docs/leaderboard.css index 6bdca3a..5b53aef 100644 --- a/docs/leaderboard.css +++ b/docs/leaderboard.css @@ -1,31 +1,100 @@ +/* General Body */ body { - font-family: Arial, sans-serif; + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; + background: linear-gradient(to right, #74ebd5, #acb6e5); + color: #333; padding: 20px; + min-height: 100vh; } +/* Heading */ h1 { text-align: center; + font-size: 3em; + margin-bottom: 30px; + color: #fff; + text-shadow: 2px 2px 8px rgba(0,0,0,0.3); } -table { +/* Search Box */ +input#searchBox { + display: block; + margin: 0 auto 30px auto; + padding: 12px 20px; width: 50%; + border-radius: 30px; + border: none; + font-size: 1em; + box-shadow: 0 4px 12px rgba(0,0,0,0.15); + transition: all 0.3s ease; +} + +input#searchBox:focus { + outline: none; + transform: scale(1.05); + box-shadow: 0 6px 15px rgba(0,0,0,0.25); +} + +/* Table Styling */ +table { + width: 60%; margin: auto; - border-collapse: collapse; + border-collapse: separate; + border-spacing: 0; + border-radius: 15px; + overflow: hidden; + box-shadow: 0 10px 25px rgba(0,0,0,0.2); + background: #fff; + transition: transform 0.3s ease; } -th, td { - padding: 10px; - border: 1px solid #ccc; - text-align: center; +table:hover { + transform: scale(1.01); } +/* Table Headers */ th { + padding: 15px; + background: linear-gradient(135deg, #667eea, #764ba2); + color: #fff; + font-size: 1.1em; + text-transform: uppercase; + letter-spacing: 1px; cursor: pointer; + transition: background 0.3s ease; } -input#searchBox { - display: block; - margin: 10px auto 20px auto; - padding: 8px; - width: 50%; +th:hover { + background: linear-gradient(135deg, #764ba2, #667eea); +} + +/* Table Cells */ +td { + padding: 12px; + border-bottom: 1px solid #eee; + font-weight: 500; + font-size: 1em; +} + +/* Zebra Rows */ +tbody tr:nth-child(odd) { + background: #f9f9f9; +} + +tbody tr:nth-child(even) { + background: #fff; +} + +/* Row Hover Effect */ +tbody tr:hover { + background: #dcdcff; + transform: scale(1.02); + transition: all 0.2s ease; +} + +/* Responsive Table */ +@media (max-width: 768px) { + table, input#searchBox { + width: 90%; + } }