diff options
Diffstat (limited to 'assets/css')
-rw-r--r-- | assets/css/_vars.scss | 2 | ||||
-rw-r--r-- | assets/css/components/_footer.scss | 6 | ||||
-rw-r--r-- | assets/css/style.scss | 1 |
3 files changed, 9 insertions, 0 deletions
diff --git a/assets/css/_vars.scss b/assets/css/_vars.scss index 77b59b9..d665c0b 100644 --- a/assets/css/_vars.scss +++ b/assets/css/_vars.scss | |||
@@ -20,6 +20,8 @@ $nav--item--spacing--sm: 3ch; | |||
20 | $nav--item--pad-h: 1ch; | 20 | $nav--item--pad-h: 1ch; |
21 | $nav--item--pad-v: .9em; | 21 | $nav--item--pad-v: .9em; |
22 | 22 | ||
23 | $footer--pad-v: .9em; | ||
24 | |||
23 | $page--item-prefix--max-chars: 3ch; | 25 | $page--item-prefix--max-chars: 3ch; |
24 | $page--item-prefix--pad: 2ch; | 26 | $page--item-prefix--pad: 2ch; |
25 | $page--item-prefix--width: $page--item-prefix--max-chars + $page--item-prefix--pad; | 27 | $page--item-prefix--width: $page--item-prefix--max-chars + $page--item-prefix--pad; |
diff --git a/assets/css/components/_footer.scss b/assets/css/components/_footer.scss new file mode 100644 index 0000000..a015d92 --- /dev/null +++ b/assets/css/components/_footer.scss | |||
@@ -0,0 +1,6 @@ | |||
1 | .c-footer { | ||
2 | padding-top: $footer--pad-v; | ||
3 | padding-bottom: $footer--pad-v; | ||
4 | color: var(--obj); | ||
5 | text-align: right; | ||
6 | } | ||
diff --git a/assets/css/style.scss b/assets/css/style.scss index 9f3bb31..60fa4ff 100644 --- a/assets/css/style.scss +++ b/assets/css/style.scss | |||
@@ -7,6 +7,7 @@ | |||
7 | @import 'components/nav'; | 7 | @import 'components/nav'; |
8 | @import 'components/page'; | 8 | @import 'components/page'; |
9 | @import 'components/hero'; | 9 | @import 'components/hero'; |
10 | @import 'components/footer'; | ||
10 | 11 | ||
11 | @import 'layouts/container'; | 12 | @import 'layouts/container'; |
12 | 13 | ||