Update index.html
Browse files- index.html +92 -0
index.html
CHANGED
@@ -341,7 +341,99 @@
|
|
341 |
}
|
342 |
|
343 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
344 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
345 |
</style>
|
346 |
</head>
|
347 |
|
|
|
341 |
}
|
342 |
|
343 |
|
344 |
+
/* Markdown styles */
|
345 |
+
.message-container h1 {
|
346 |
+
font-size: 36px;
|
347 |
+
margin-top: 24px;
|
348 |
+
margin-bottom: 16px;
|
349 |
+
color: #fff;
|
350 |
+
/* Change text color to white */
|
351 |
+
}
|
352 |
+
|
353 |
+
.message-container h2 {
|
354 |
+
font-size: 32px;
|
355 |
+
margin-top: 20px;
|
356 |
+
margin-bottom: 12px;
|
357 |
+
color: #fff;
|
358 |
+
/* Change text color to white */
|
359 |
+
}
|
360 |
+
|
361 |
+
.message-container h3 {
|
362 |
+
font-size: 28px;
|
363 |
+
margin-top: 16px;
|
364 |
+
margin-bottom: 8px;
|
365 |
+
color: #fff;
|
366 |
+
/* Change text color to white */
|
367 |
+
}
|
368 |
+
|
369 |
+
.message-container p {
|
370 |
+
font-size: 20px;
|
371 |
+
line-height: 1.6;
|
372 |
+
margin-bottom: 12px;
|
373 |
+
color: #fff;
|
374 |
+
/* Change text color to white */
|
375 |
+
}
|
376 |
+
|
377 |
+
.message-container ul,
|
378 |
+
.message-container ol {
|
379 |
+
margin-top: 12px;
|
380 |
+
margin-bottom: 12px;
|
381 |
+
padding-left: 20px;
|
382 |
+
color: #fff;
|
383 |
+
/* Change text color to white */
|
384 |
+
}
|
385 |
+
|
386 |
+
.message-container li {
|
387 |
+
margin-bottom: 6px;
|
388 |
+
}
|
389 |
+
|
390 |
+
.message-container pre {
|
391 |
+
background-color: #333;
|
392 |
+
/* Darken the background for better contrast */
|
393 |
+
padding: 16px;
|
394 |
+
border-radius: 8px;
|
395 |
+
margin-top: 12px;
|
396 |
+
margin-bottom: 12px;
|
397 |
+
overflow-x: auto;
|
398 |
+
color: #fff;
|
399 |
+
/* Change text color to white */
|
400 |
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
401 |
+
}
|
402 |
+
|
403 |
+
.message-container pre code {
|
404 |
+
display: block;
|
405 |
+
padding: 0;
|
406 |
+
font-size: 18px;
|
407 |
+
color: #fff;
|
408 |
+
/* Change text color to white */
|
409 |
+
}
|
410 |
+
|
411 |
+
.message-container a {
|
412 |
+
color: #007bff;
|
413 |
+
text-decoration: none;
|
414 |
+
border-bottom: 1px solid transparent;
|
415 |
+
transition: border-bottom-color 0.3s;
|
416 |
+
}
|
417 |
|
418 |
+
.message-container a:hover {
|
419 |
+
border-bottom-color: #007bff;
|
420 |
+
}
|
421 |
+
|
422 |
+
.message-container blockquote p {
|
423 |
+
margin: 0;
|
424 |
+
font-style: italic;
|
425 |
+
color: #fff;
|
426 |
+
/* Change text color to white */
|
427 |
+
}
|
428 |
+
|
429 |
+
/* Support for italic and bold italic */
|
430 |
+
.message-container em {
|
431 |
+
font-style: italic;
|
432 |
+
}
|
433 |
+
|
434 |
+
.message-container strong {
|
435 |
+
font-weight: bold;
|
436 |
+
}
|
437 |
</style>
|
438 |
</head>
|
439 |
|