YchKhan commited on
Commit
9a3420b
·
verified ·
1 Parent(s): 0b507c1

Update static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +123 -0
static/style.css CHANGED
@@ -1318,4 +1318,127 @@ button:hover {
1318
 
1319
  .refined-problem-description {
1320
  margin-bottom: 10px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1321
  }
 
1318
 
1319
  .refined-problem-description {
1320
  margin-bottom: 10px;
1321
+ }
1322
+
1323
+ /* Styles for Markdown content */
1324
+ .markdown-content {
1325
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
1326
+ line-height: 1.6;
1327
+ color: var(--gray-800);
1328
+ overflow-wrap: break-word;
1329
+ word-wrap: break-word;
1330
+ padding: 10px;
1331
+ }
1332
+
1333
+ .markdown-content h1,
1334
+ .markdown-content h2,
1335
+ .markdown-content h3,
1336
+ .markdown-content h4,
1337
+ .markdown-content h5,
1338
+ .markdown-content h6 {
1339
+ margin-top: 1.5em;
1340
+ margin-bottom: 0.75em;
1341
+ font-weight: 600;
1342
+ line-height: 1.25;
1343
+ color: var(--gray-900);
1344
+ }
1345
+
1346
+ .markdown-content h1 {
1347
+ font-size: 1.75em;
1348
+ border-bottom: 1px solid var(--gray-300);
1349
+ padding-bottom: 0.3em;
1350
+ }
1351
+
1352
+ .markdown-content h2 {
1353
+ font-size: 1.5em;
1354
+ border-bottom: 1px solid var(--gray-300);
1355
+ padding-bottom: 0.3em;
1356
+ }
1357
+
1358
+ .markdown-content h3 {
1359
+ font-size: 1.25em;
1360
+ }
1361
+
1362
+ .markdown-content h4 {
1363
+ font-size: 1em;
1364
+ }
1365
+
1366
+ .markdown-content p,
1367
+ .markdown-content ul,
1368
+ .markdown-content ol {
1369
+ margin-top: 0;
1370
+ margin-bottom: 1em;
1371
+ }
1372
+
1373
+ .markdown-content ul,
1374
+ .markdown-content ol {
1375
+ padding-left: 2em;
1376
+ }
1377
+
1378
+ .markdown-content li {
1379
+ margin-bottom: 0.25em;
1380
+ }
1381
+
1382
+ .markdown-content code {
1383
+ font-family: SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
1384
+ padding: 0.2em 0.4em;
1385
+ margin: 0;
1386
+ font-size: 85%;
1387
+ background-color: rgba(27, 31, 35, 0.05);
1388
+ border-radius: 3px;
1389
+ }
1390
+
1391
+ .markdown-content pre {
1392
+ padding: 16px;
1393
+ overflow: auto;
1394
+ font-size: 85%;
1395
+ line-height: 1.45;
1396
+ background-color: #f6f8fa;
1397
+ border-radius: 3px;
1398
+ margin-bottom: 1em;
1399
+ }
1400
+
1401
+ .markdown-content pre code {
1402
+ padding: 0;
1403
+ margin: 0;
1404
+ font-size: 100%;
1405
+ background-color: transparent;
1406
+ border: 0;
1407
+ }
1408
+
1409
+ .markdown-content blockquote {
1410
+ padding: 0 1em;
1411
+ color: var(--gray-600);
1412
+ border-left: 0.25em solid var(--gray-300);
1413
+ margin: 0 0 1em 0;
1414
+ }
1415
+
1416
+ .markdown-content blockquote > :first-child {
1417
+ margin-top: 0;
1418
+ }
1419
+
1420
+ .markdown-content blockquote > :last-child {
1421
+ margin-bottom: 0;
1422
+ }
1423
+
1424
+ .markdown-content table {
1425
+ border-collapse: collapse;
1426
+ width: 100%;
1427
+ margin-bottom: 1em;
1428
+ overflow: auto;
1429
+ }
1430
+
1431
+ .markdown-content table th,
1432
+ .markdown-content table td {
1433
+ padding: 6px 13px;
1434
+ border: 1px solid var(--gray-300);
1435
+ }
1436
+
1437
+ .markdown-content table tr {
1438
+ background-color: #fff;
1439
+ border-top: 1px solid var(--gray-300);
1440
+ }
1441
+
1442
+ .markdown-content table tr:nth-child(2n) {
1443
+ background-color: #f6f8fa;
1444
  }