123456789101112131415161718192021222324252627282930313233343536373839404142 |
- @import "nanogram/nanogram";
- .body {
- /* Use body class and don't extend grid, footer unsticks */
- width: 100%;
- display: flex;
- flex-direction: column;
- min-height: 100vh;
- background-color: $background-color;
- }
- .body > * { flex: 1 1 auto; }
- .divider {
- align-self: center;
- margin: $leading;
- width: 60%;
- }
- .main {
- @extend .container;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- header {
- h1 { text-align: center; }
- }
- @import
- "components/code",
- "components/code_theme",
- "components/headings",
- "components/table",
- "components/blockquote",
- "components/divider",
- "components/pagination",
- "components/hyperlinks",
- "components/table_of_contents",
- "components/list_bullets";
|