YchKhan commited on
Commit
f282927
·
verified ·
1 Parent(s): 117009d

Update static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +35 -0
static/style.css CHANGED
@@ -1283,4 +1283,39 @@ button:hover {
1283
  /* Hide original floating buttons when using ribbon */
1284
  .floating-buttons {
1285
  display: none;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1286
  }
 
1283
  /* Hide original floating buttons when using ribbon */
1284
  .floating-buttons {
1285
  display: none;
1286
+ }
1287
+
1288
+ .problem-score-container {
1289
+ margin-top: 10px;
1290
+ margin-bottom: 15px;
1291
+ padding: 8px;
1292
+ border-radius: 6px;
1293
+ background-color: #f8f9fa;
1294
+ border: 1px solid #e9ecef;
1295
+ }
1296
+
1297
+ .problem-score {
1298
+ font-size: 0.95rem;
1299
+ padding: 5px 0;
1300
+ }
1301
+
1302
+ .problem-score-loading {
1303
+ display: flex;
1304
+ align-items: center;
1305
+ gap: 8px;
1306
+ color: var(--gray-600);
1307
+ font-size: 0.9rem;
1308
+ }
1309
+
1310
+ .loading-spinner-small {
1311
+ width: 16px;
1312
+ height: 16px;
1313
+ border: 2px solid rgba(0, 0, 0, 0.1);
1314
+ border-top: 2px solid var(--primary);
1315
+ border-radius: 50%;
1316
+ animation: spin 1s linear infinite;
1317
+ }
1318
+
1319
+ .refined-problem-description {
1320
+ margin-bottom: 10px;
1321
  }