File size: 740 Bytes
4bdbb91 556657e 4bdbb91 556657e |
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 |
# css.py 文件
CUSTOM_CSS = """
#leaderboard-table .dataframe th:nth-child(1),
#leaderboard-table .dataframe td:nth-child(1) {
width: 150px; /* Model column width */
}
#leaderboard-table .dataframe th:nth-child(2),
#leaderboard-table .dataframe td:nth-child(2) {
width: 100px; /* MSVAMP column width */
}
#leaderboard-table .dataframe th:nth-child(3),
#leaderboard-table .dataframe td:nth-child(3) {
width: 100px; /* MGSM column width */
}
#leaderboard-table .dataframe th:nth-child(4),
#leaderboard-table .dataframe td:nth-child(4) {
width: 100px; /* MNum column width */
}
#leaderboard-table .dataframe th:nth-child(5),
#leaderboard-table .dataframe td:nth-child(5) {
width: 200px; /* Notes column width */
}
"""
|