aboutsummaryrefslogtreecommitdiff
path: root/_scss/components
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2019-02-22 02:22:35 +0300
committerValentin Popov <info@valentineus.link>2019-02-22 02:27:12 +0300
commit4a18d622cf2879a18d99d49bb6cc6ebe69cc484c (patch)
tree29b676c288024e240aecf17972f01e53a0d371c3 /_scss/components
parentb6760fb70b6483b674e65cd18c7d8808d446707c (diff)
downloadpopov.link-4a18d622cf2879a18d99d49bb6cc6ebe69cc484c.tar.xz
popov.link-4a18d622cf2879a18d99d49bb6cc6ebe69cc484c.zip
Adding wallpaper
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to '_scss/components')
-rw-r--r--_scss/components/_background.scss11
1 files changed, 11 insertions, 0 deletions
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;
+}