diff options
Diffstat (limited to '_scss')
-rw-r--r-- | _scss/base/_main.scss | 1 | ||||
-rw-r--r-- | _scss/components/_background.scss | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/_scss/base/_main.scss b/_scss/base/_main.scss index 4adfaca..13a219c 100644 --- a/_scss/base/_main.scss +++ b/_scss/base/_main.scss @@ -1,2 +1,3 @@ @import 'components/core'; +@import 'components/background'; @import 'components/navigation'; diff --git a/_scss/components/_background.scss b/_scss/components/_background.scss new file mode 100644 index 0000000..fd6fe7a --- /dev/null +++ b/_scss/components/_background.scss @@ -0,0 +1,11 @@ +$background-border: rgba(0, 0, 0, .09); +$background-image: '/assets/background.svg'; + +html { + background: $color-bg url($background-image) repeat fixed; +} + +body { + border-left: 1px solid $background-border; + border-right: 1px solid $background-border; +} |