File size: 2,909 Bytes
f19fba4 51e5344 f19fba4 51e5344 f19fba4 51e5344 f19fba4 a0f1951 f19fba4 51e5344 f19fba4 a0f1951 f19fba4 51e5344 f19fba4 a0f1951 f19fba4 51e5344 f19fba4 51e5344 f19fba4 51e5344 f19fba4 51e5344 f19fba4 1efe183 f19fba4 1efe183 f19fba4 1efe183 f19fba4 1efe183 f19fba4 1efe183 f19fba4 51e5344 f19fba4 a0f1951 f19fba4 51e5344 f19fba4 a0f1951 f19fba4 cd335e5 f19fba4 cd335e5 f19fba4 51e5344 f19fba4 51e5344 f19fba4 51e5344 f19fba4 51e5344 f19fba4 51e5344 f19fba4 51e5344 f19fba4 7434086 f19fba4 51e5344 f19fba4 d59cc48 f19fba4 d59cc48 7434086 db60862 d59cc48 f19fba4 db60862 f19fba4 51e5344 f19fba4 0e75159 f19fba4 51e5344 |
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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 |
.container {
max-width: 1000px;
margin: 0 auto;
padding: 20px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.header {
text-align: center;
margin-bottom: 24px;
}
.title {
color: #333;
margin-bottom: 8px;
}
.subtitle {
color: #666;
margin: 5px 0;
}
.filters-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.search-container {
flex: 1;
margin-right: 20px;
margin-bottom: 10px;
}
.search-input {
width: 100%;
padding: 8px 12px;
font-size: 14px;
border: 1px solid #ddd;
border-radius: 4px;
}
.options-container {
display: flex;
gap: 20px;
}
.option-label {
display: flex;
align-items: center;
cursor: pointer;
font-size: 14px;
color: #333;
}
.option-label input {
margin-right: 8px;
}
.table-container {
background: white;
border-radius: 8px;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
overflow: hidden;
}
table {
width: 100%;
border-collapse: collapse;
table-layout: fixed;
}
/* Model name column */
th:first-child, td:first-child {
width: 25%;
}
/* Score columns (GAIA, MATH, SimpleQA) */
th:not(:first-child), td:not(:first-child) {
width: 25%;
}
th {
text-align: left;
padding: 12px;
border-bottom: 2px solid #eee;
color: #333;
font-weight: 600;
cursor: pointer;
}
th:hover {
color: #2ecc71;
}
.sort-indicator {
display: inline-block;
margin-left: 4px;
transition: transform 0.2s ease;
}
td {
padding: 12px;
border-bottom: 1px solid #eee;
}
tr:nth-child(even) {
background-color: #f8f9fa;
}
.model-name {
font-weight: 500;
color: #2c3e50;
}
.score-container {
display: flex;
flex-direction: column;
gap: 4px;
}
.score-bar {
width: 100%;
height: 24px;
background: #eee;
border-radius: 5px;
overflow: hidden;
position: relative;
}
.vanilla-bar {
width: 100%;
height: 14px;
background: #eee;
border-radius: 3px;
opacity: 0.6;
overflow: hidden;
position: relative;
}
.score-fill {
height: 100%;
transition: width 0.3s ease, background-color 0.3s ease;
border-radius: inherit;
}
.score-text {
position: absolute;
right: 8px;
top: 50%;
transform: translateY(-50%);
color: white;
font-size: 12px;
font-weight: 500;
text-shadow: 0 1px 2px rgba(0,0,0,0.1);
mix-blend-mode: difference;
}
.vanilla-text {
font-size: 9px;
opacity: 0.9;
}
.legend {
margin-top: 16px;
text-align: center;
color: #666;
font-size: 13px;
}
@media (max-width: 768px) {
.filters-container {
flex-direction: column;
align-items: stretch;
}
.search-container {
margin-right: 0;
margin-bottom: 15px;
}
.options-container {
flex-direction: column;
gap: 10px;
}
} |