Upload 2 files
Browse files
app.py
CHANGED
|
@@ -123,18 +123,22 @@ def create_gradio_app():
|
|
| 123 |
#leaderboard-container * {
|
| 124 |
box-sizing: border-box;
|
| 125 |
}
|
| 126 |
-
/* Force
|
| 127 |
#leaderboard-container .paper-link {
|
| 128 |
color: white !important;
|
| 129 |
background-color: #4285F4 !important;
|
| 130 |
text-decoration: none !important;
|
| 131 |
}
|
| 132 |
-
#leaderboard-container .paper-link:hover
|
|
|
|
|
|
|
|
|
|
|
|
|
| 133 |
#leaderboard-container .paper-link:focus,
|
| 134 |
#leaderboard-container .paper-link:visited,
|
| 135 |
#leaderboard-container .paper-link:active {
|
| 136 |
color: white !important;
|
| 137 |
-
background-color: #
|
| 138 |
text-decoration: none !important;
|
| 139 |
}
|
| 140 |
/* Fix font issues for authors */
|
|
|
|
| 123 |
#leaderboard-container * {
|
| 124 |
box-sizing: border-box;
|
| 125 |
}
|
| 126 |
+
/* Force all buttons to have same blue color and remove underlines */
|
| 127 |
#leaderboard-container .paper-link {
|
| 128 |
color: white !important;
|
| 129 |
background-color: #4285F4 !important;
|
| 130 |
text-decoration: none !important;
|
| 131 |
}
|
| 132 |
+
#leaderboard-container .paper-link:hover {
|
| 133 |
+
color: white !important;
|
| 134 |
+
background-color: #3367D6 !important;
|
| 135 |
+
text-decoration: none !important;
|
| 136 |
+
}
|
| 137 |
#leaderboard-container .paper-link:focus,
|
| 138 |
#leaderboard-container .paper-link:visited,
|
| 139 |
#leaderboard-container .paper-link:active {
|
| 140 |
color: white !important;
|
| 141 |
+
background-color: #4285F4 !important;
|
| 142 |
text-decoration: none !important;
|
| 143 |
}
|
| 144 |
/* Fix font issues for authors */
|
style.css
CHANGED
|
@@ -5,8 +5,8 @@
|
|
| 5 |
}
|
| 6 |
|
| 7 |
:root {
|
| 8 |
-
--primary-color: #
|
| 9 |
-
--secondary-color: #
|
| 10 |
--accent-color: #f59e0b;
|
| 11 |
--success-color: #10b981;
|
| 12 |
--warning-color: #f59e0b;
|
|
|
|
| 5 |
}
|
| 6 |
|
| 7 |
:root {
|
| 8 |
+
--primary-color: #4285F4;
|
| 9 |
+
--secondary-color: #3367D6;
|
| 10 |
--accent-color: #f59e0b;
|
| 11 |
--success-color: #10b981;
|
| 12 |
--warning-color: #f59e0b;
|