diff --git a/_scss/components/theme/_background.scss b/_scss/components/theme/_background.scss new file mode 100644 index 0000000..5b45f0c --- /dev/null +++ b/_scss/components/theme/_background.scss @@ -0,0 +1,15 @@ +@import 'utilities/boxshadow'; + +$background-image: 'data:image/svg+xml;utf8,'; + +html { + background: $color-tertiary url($background-image) repeat fixed; +} + +body { + background: $color-initial; + border-left: 1px solid rgba(0, 0, 0, .09); + border-right: 1px solid rgba(0, 0, 0, .09); + + @include box-shadow(0 1px 4px rgba(0, 0, 0, .04)); +}