markdown5.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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. / font-family:"Book Antiqua", Palatino, serif;
  10. / font-family:Arial, Helvetica, sans-serif;
  11. / font-family:Tahoma, Verdana, Geneva, sans-serif;
  12. / font-family:Courier, monospace;
  13. / font-family:"Times New Roman", Times, serif;
  14. /* -------------- COLOR OPTIONS ------------
  15. following are additional color options for base font
  16. you could uncomment another one to easily change the base color
  17. or add one to a specific element style below */
  18. color: #333333; /* dark gray not black */
  19. / color: #000000; /* black */
  20. / color: #666666; /* medium gray black */
  21. / color: #E3E3E3; /* very light gray */
  22. / color: white;
  23. line-height: 1;
  24. / max-width: 960px;
  25. max-width: 800px;
  26. padding: 30px;
  27. font-size: 18px;
  28. }
  29. p {
  30. / font-size: 22px;
  31. line-height: 150%;
  32. / max-width: 540px;
  33. max-width: 960px;
  34. font-weight: 400;
  35. color: #333333
  36. }
  37. h1, h2, h3, h4 {
  38. / color: #111111;
  39. font-weight: 400;
  40. }
  41. h2, h3, h4, h5, p {
  42. margin-bottom: 25px;
  43. padding: 0;
  44. }
  45. h1 {
  46. margin-bottom: 10px;
  47. font-size:300%;
  48. padding: 0px;
  49. font-variant:small-caps;
  50. }
  51. h2 {
  52. font-size:150%
  53. / margin: 24px 0 6px;
  54. }
  55. h3 {
  56. font-size:120%
  57. }
  58. h4 {
  59. font-size:100%
  60. font-variant:small-caps;
  61. }
  62. h5 {
  63. font-size:80%
  64. font-weight: 100;
  65. }
  66. h6 {
  67. font-size:80%
  68. font-weight: 100;
  69. color:red;
  70. font-variant:small-caps;
  71. }
  72. a {
  73. color: grey;
  74. margin: 0;
  75. padding: 0;
  76. vertical-align: baseline;
  77. }
  78. a:hover {
  79. text-decoration: blink;
  80. color: green;
  81. }
  82. a:visited {
  83. color: black;
  84. }
  85. ul, ol {
  86. padding: 0;
  87. margin: 0px 0px 0px 50px;
  88. }
  89. ul {
  90. list-style-type: square;
  91. list-style-position: inside;
  92. }
  93. li {
  94. line-height:150%
  95. }
  96. li ul, li ul {
  97. margin-left: 24px;
  98. }
  99. pre {
  100. padding: 0px 24px;
  101. max-width: 800px;
  102. white-space: pre-wrap;
  103. }
  104. code {
  105. font-family: Consolas, Monaco, Andale Mono, monospace;
  106. line-height: 1.5;
  107. font-size: 13px;
  108. }
  109. aside {
  110. display: block;
  111. float: right;
  112. width: 390px;
  113. }
  114. blockquote {
  115. border-left:.5em solid #eee;
  116. padding: 0 1em;
  117. margin-left:0;
  118. max-width: 476px;
  119. }
  120. blockquote cite {
  121. / font-size:14px;
  122. line-height:20px;
  123. color:#bfbfbf;
  124. }
  125. blockquote cite:before {
  126. content: '\2014 \00A0';
  127. }
  128. blockquote p {
  129. color: #666;
  130. max-width: 460px;
  131. }
  132. hr {
  133. / width: 540px;
  134. text-align: left;
  135. margin: 0 auto 0 0;
  136. color: #999;
  137. }