20 lines
391 B
SCSS
20 lines
391 B
SCSS
//
|
|
// Bootstrap and its default variables
|
|
//
|
|
|
|
@import "node_modules/bootstrap/scss/bootstrap";
|
|
|
|
html, body {
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
|
|
body {
|
|
margin: 0;
|
|
background-color: #aaa;
|
|
background-image: url(//gameranx.com/wp-content/uploads/2016/02/Final-Fantasy-XV-4K-Wallpaper.jpg);
|
|
background-position-x: center;
|
|
background-position-y: center;
|
|
background-size: cover;
|
|
}
|