File size: 1,200 Bytes
d4d998a 3c01baa b1cb07d 3c01baa b1cb07d d4d998a |
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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
"""
CSS and styling for the GuardBench Leaderboard.
"""
custom_css = """
.markdown-text {
font-size: 16px !important;
text-align: justify !important;
}
.tab-buttons button.selected {
border-color: #2196F3 !important;
background: #E3F2FD !important;
color: #2196F3 !important;
}
#citation-button textarea {
font-family: monospace !important;
}
.leaderboard-container {
margin-top: 20px;
}
.category-header {
font-weight: bold;
background-color: #f5f5f5;
padding: 10px;
margin-top: 15px;
border-radius: 5px;
}
.metric-name {
font-weight: bold;
color: #2196F3;
}
.model-name {
font-weight: bold;
}
.model-link:hover {
text-decoration: underline;
color: #1976D2;
}
.version-selector {
margin: 0 !important;
padding: 5px;
border-radius: 5px;
}
.version-selector label {
font-weight: bold;
color: #2196F3;
}
.version-selector select {
border-color: #2196F3;
border-radius: 4px;
}
/* Make sure the version selector is properly aligned with refresh button */
.version-selector > .block {
padding: 0 !important;
}
.version-selector > .block > .wrap {
position: relative;
top: -5px;
}
"""
|