markdown5.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. body{
  2. margin: 0 auto;
  3. background-color:white;
  4. /* --------- FONT FAMILY --------
  5. following are some optional font families. Usually a family
  6. is safer to choose than a specific font,
  7. which may not be on the users computer */
  8. font-family:Georgia, Palatino, serif;
  9. /* -------------- COLOR OPTIONS ------------
  10. following are additional color options for base font
  11. you could uncomment another one to easily change the base color
  12. or add one to a specific element style below */
  13. color: #333333; /* dark gray not black */
  14. line-height: 1;
  15. max-width: 800px;
  16. padding: 30px;
  17. font-size: 18px;
  18. }
  19. p {
  20. line-height: 150%;
  21. max-width: 960px;
  22. font-weight: 400;
  23. color: #333333
  24. }
  25. h1, h2, h3, h4 {
  26. font-weight: 400;
  27. }
  28. h2, h3, h4, h5, p {
  29. margin-bottom: 25px;
  30. padding: 0;
  31. }
  32. h1 {
  33. margin-bottom: 10px;
  34. font-size:300%;
  35. padding: 0px;
  36. font-variant:small-caps;
  37. }
  38. h2 {
  39. font-size:150%
  40. }
  41. h3 {
  42. font-size:120%
  43. }
  44. h4 {
  45. font-size:100%
  46. font-variant:small-caps;
  47. }
  48. h5 {
  49. font-size:80%
  50. font-weight: 100;
  51. }
  52. h6 {
  53. font-size:80%
  54. font-weight: 100;
  55. color:red;
  56. font-variant:small-caps;
  57. }
  58. a {
  59. color: grey;
  60. margin: 0;
  61. padding: 0;
  62. vertical-align: baseline;
  63. }
  64. a:hover {
  65. text-decoration: blink;
  66. color: green;
  67. }
  68. a:visited {
  69. color: black;
  70. }
  71. ul, ol {
  72. padding: 0;
  73. margin: 0px 0px 0px 50px;
  74. }
  75. ul {
  76. list-style-type: square;
  77. list-style-position: inside;
  78. }
  79. li {
  80. line-height:150%
  81. }
  82. li ul, li ul {
  83. margin-left: 24px;
  84. }
  85. pre {
  86. padding: 0px 24px;
  87. max-width: 800px;
  88. white-space: pre-wrap;
  89. }
  90. code {
  91. font-family: Consolas, Monaco, Andale Mono, monospace;
  92. line-height: 1.5;
  93. font-size: 13px;
  94. }
  95. aside {
  96. display: block;
  97. float: right;
  98. width: 390px;
  99. }
  100. blockquote {
  101. border-left:.5em solid #eee;
  102. padding: 0 1em;
  103. margin-left:0;
  104. max-width: 476px;
  105. }
  106. blockquote cite {
  107. line-height:20px;
  108. color:#bfbfbf;
  109. }
  110. blockquote cite:before {
  111. content: '\2014 \00A0';
  112. }
  113. blockquote p {
  114. color: #666;
  115. max-width: 460px;
  116. }
  117. hr {
  118. text-align: left;
  119. margin: 0 auto 0 0;
  120. color: #999;
  121. }