markdown-alt.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. body {
  2. line-height: 1.4em;
  3. color: black;
  4. padding:1em;
  5. margin:auto;
  6. max-width:42em;
  7. }
  8. li {
  9. color: black;
  10. }
  11. h1,
  12. h2,
  13. h3,
  14. h4,
  15. h5,
  16. h6 {
  17. border: 0 none !important;
  18. }
  19. h1 {
  20. margin-top: 0.5em;
  21. margin-bottom: 0.5em;
  22. border-bottom: 2px solid #000080 !important;
  23. }
  24. h2 {
  25. margin-top: 1em;
  26. margin-bottom: 0.5em;
  27. border-bottom: 2px solid #000080 !important;
  28. }
  29. pre {
  30. background-color: #f8f8f8;
  31. border: 1px solid #2f6fab;
  32. border-radius: 3px;
  33. overflow: auto;
  34. padding: 5px;
  35. }
  36. pre code {
  37. background-color: inherit;
  38. border: none;
  39. padding: 0;
  40. }
  41. code {
  42. background-color: #ffffe0;
  43. border: 1px solid orange;
  44. border-radius: 3px;
  45. padding: 0 0.2em;
  46. }
  47. a {
  48. text-decoration: underline;
  49. }
  50. ul, ol {
  51. padding-left: 30px;
  52. }
  53. li {
  54. margin: 0.2em 0 0 0em; padding: 0px;
  55. }
  56. em {
  57. color: #b05000;
  58. }
  59. table.text th, table.text td {
  60. vertical-align: top;
  61. border-top: 1px solid #ccc;
  62. padding:5px;
  63. }