Spaces:
Sleeping
Sleeping
File size: 4,328 Bytes
af980d7 | 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 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 | .card {
background: var(--bg-surface);
border: 1px solid var(--border);
border-radius: var(--radius-xl);
padding: 24px;
display: flex;
flex-direction: column;
gap: 18px;
box-shadow: var(--shadow-sm);
height: fit-content;
}
/* Verdict color borders */
.authentic { border-top: 3px solid var(--authentic); }
.aiGenerated { border-top: 3px solid var(--ai-generated); }
.suspect { border-top: 3px solid var(--suspect); }
/* Verdict header */
.verdictHeader {
display: flex;
align-items: center;
gap: 14px;
}
.verdictIconWrap {
width: 48px;
height: 48px;
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.verdictLabel {
font-size: 20px;
font-weight: 800;
color: var(--text-primary);
letter-spacing: -0.5px;
line-height: 1.2;
}
.verdictSub {
font-size: 12.5px;
color: var(--text-muted);
margin-top: 2px;
}
/* Score arc */
.scoreWrap {
display: flex;
flex-direction: column;
align-items: center;
gap: 6px;
}
.scoreArc {
filter: drop-shadow(0 4px 16px rgba(0,0,0,0.08));
}
.scoreText {
font-feature-settings: 'tnum';
}
.scoreCaption {
font-size: 11px;
color: var(--text-muted);
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.8px;
}
/* Breakdown toggle */
.breakdownToggle {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
background: var(--bg-surface-2);
border: 1px solid var(--border);
border-radius: var(--radius-md);
padding: 10px 14px;
cursor: pointer;
font-size: 13px;
font-weight: 600;
color: var(--text-secondary);
transition: all 0.15s ease;
}
.breakdownToggle:hover {
background: var(--accent-light);
border-color: var(--accent);
color: var(--accent);
}
.breakdownToggleLeft {
display: flex;
align-items: center;
gap: 7px;
}
/* Breakdown */
.breakdown {
overflow: hidden;
}
.breakdownInner {
display: flex;
flex-direction: column;
gap: 12px;
padding: 4px 0;
}
.modelRow {
display: flex;
flex-direction: column;
gap: 5px;
}
.modelRowHeader {
display: flex;
justify-content: space-between;
align-items: center;
}
.modelName {
font-size: 12px;
font-weight: 600;
color: var(--text-secondary);
}
.modelScore {
font-size: 12px;
font-weight: 700;
color: var(--text-primary);
}
.modelBar {
height: 6px;
background: var(--bg-surface-3);
border-radius: 99px;
overflow: hidden;
}
.modelBarFill {
height: 100%;
background: linear-gradient(90deg, var(--accent) 0%, #4d94ff 100%);
border-radius: 99px;
}
/* Quick stats */
.quickStats {
display: flex;
flex-direction: column;
gap: 8px;
background: var(--bg-surface-2);
border-radius: var(--radius-md);
padding: 12px 14px;
}
.statItem {
display: flex;
align-items: center;
gap: 7px;
font-size: 12.5px;
color: var(--text-muted);
}
.statLabel {
flex: 1;
color: var(--text-secondary);
font-weight: 500;
}
.statValue {
color: var(--text-primary);
font-size: 12px;
font-weight: 600;
}
/* Artifacts */
.artifactsList {
display: flex;
flex-direction: column;
gap: 10px;
}
.artifactsTitle {
font-size: 11px;
font-weight: 700;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 0.8px;
}
.artifactRow {
display: flex;
align-items: flex-start;
gap: 10px;
}
.severityDot {
width: 8px;
height: 8px;
border-radius: 50%;
flex-shrink: 0;
margin-top: 4px;
}
.sev_critical { background: var(--ai-generated); }
.sev_high { background: var(--suspect); }
.sev_medium { background: #a78bfa; }
.sev_low { background: var(--text-muted); }
.artifactContent {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
flex: 1;
}
.artifactType {
font-size: 13px;
font-weight: 600;
color: var(--text-primary);
flex: 1;
min-width: 0;
}
.severityBadge {
font-size: 10px;
font-weight: 700;
padding: 2px 7px;
border-radius: 99px;
text-transform: capitalize;
letter-spacing: 0.2px;
flex-shrink: 0;
}
.sevBadge_critical { background: var(--ai-generated-bg); color: var(--ai-generated); }
.sevBadge_high { background: var(--suspect-bg); color: var(--suspect); }
.sevBadge_medium { background: #ede9fe; color: #7c3aed; }
.sevBadge_low { background: var(--bg-surface-3); color: var(--text-muted); }
|