markdown.less 458 B

1234567891011121314151617181920212223242526272829303132333435
  1. // Markdown output
  2. // -------------------------
  3. .markdown {
  4. margin: 0px;
  5. &:first-child {
  6. margin-top: 0px;
  7. }
  8. &:last-child {
  9. margin-bottom: 0px;
  10. }
  11. h1 {
  12. font-size: @baseFontSize * 2;
  13. }
  14. h2 {
  15. font-size: @baseFontSize * 1.7;
  16. }
  17. h3 {
  18. font-size: @baseFontSize * 1.5;
  19. }
  20. h4 {
  21. font-size: @baseFontSize * 1.2;
  22. }
  23. hr {
  24. border: none;
  25. border-top: 1px solid @hrBorder;
  26. }
  27. }