blob: f91231d00602891d38e1e6e6b9c58767878073de (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
$background-image: '/assets/background.svg';
html {
background: $color-bg url($background-image) repeat fixed;
}
body {
border-left: 1px solid $color-bg-alt;
border-right: 1px solid $color-bg-alt;
}
|