_base.scss 744 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. @import "nanogram/nanogram";
  2. .body {
  3. /* Use body class and don't extend grid, footer unsticks */
  4. width: 100%;
  5. display: flex;
  6. flex-direction: column;
  7. min-height: 100vh;
  8. background-color: $background-color;
  9. }
  10. .body > * { flex: 1 1 auto; }
  11. .divider {
  12. align-self: center;
  13. margin: $leading;
  14. width: 60%;
  15. }
  16. .main {
  17. @extend .container;
  18. display: flex;
  19. flex-direction: column;
  20. justify-content: space-between;
  21. }
  22. header {
  23. h1 { text-align: center; }
  24. }
  25. @import
  26. "components/code",
  27. "components/code_theme",
  28. "components/headings",
  29. "components/table",
  30. "components/blockquote",
  31. "components/divider",
  32. "components/pagination",
  33. "components/hyperlinks",
  34. "components/table_of_contents",
  35. "components/list_bullets";