_headings.scss 805 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. // Sass partial for heading (title) styles
  2. /* Set heading sizes, getting smaller for deeper nesting */
  3. .topictitle1 {
  4. font-size: 1.34em;
  5. margin-bottom: 0.1em;
  6. margin-top: 0;
  7. }
  8. .topictitle2 {
  9. font-size: 1.17em;
  10. margin-bottom: 0.45em;
  11. margin-top: 1pc;
  12. }
  13. .topictitle3 {
  14. font-size: 1.17em;
  15. font-weight: bold;
  16. margin-bottom: 0.17em;
  17. margin-top: 1pc;
  18. }
  19. .topictitle4 {
  20. font-size: 1.17em;
  21. font-weight: bold;
  22. margin-top: 0.83em;
  23. }
  24. .topictitle5 {
  25. font-size: 1.17em;
  26. font-weight: bold;
  27. }
  28. .topictitle6 {
  29. font-size: 1.17em;
  30. font-style: italic;
  31. }
  32. .sectiontitle {
  33. color: $text-color;
  34. font-size: 1.17em;
  35. font-weight: bold;
  36. margin-bottom: 0;
  37. margin-top: 1em;
  38. }
  39. .section {
  40. margin-bottom: 1em;
  41. margin-top: 1em;
  42. }
  43. .example {
  44. margin-bottom: 1em;
  45. margin-top: 1em;
  46. }