styles.css 769 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. * {
  2. background-color: #282828;
  3. font-size: 20px;
  4. font-family: system-ui;
  5. list-style-type: none;
  6. }
  7. a{
  8. color: white;
  9. }
  10. body{
  11. color: white;
  12. }
  13. pre {
  14. background: #a89984;
  15. border: 10px solid #928374;
  16. border-radius: 10px;
  17. padding: 1em;
  18. margin: 1em;
  19. white-space: pre-wrap;
  20. }
  21. h1 {
  22. font-size: 30px;
  23. }
  24. h2 {
  25. font-size: 25px;
  26. }
  27. h3 {
  28. font-size: 22px;
  29. }
  30. code {
  31. background-color: #a89984;
  32. /*border: 5px solid #928374;*/
  33. border-radius: 5px;
  34. word-wrap: break-word;
  35. overflow-wrap: break-word;
  36. }
  37. ul li {
  38. list-style: inside circle;
  39. display:list-item;
  40. }
  41. table {
  42. border-collapse: collapse;
  43. border: 2px solid #7c6f64;
  44. }
  45. th,td {
  46. border: 2px solid #7c6f64;
  47. }
  48. img {
  49. max-width: 50%;
  50. height: auto;
  51. }