15 lines
324 B
SCSS
15 lines
324 B
SCSS
body {
|
|
background-color: rgb(6, 25, 28);
|
|
background-image: url('~/assets/images/sky.png');
|
|
background-attachment: fixed;
|
|
|
|
background-size: cover;
|
|
background-blend-mode: multiply;
|
|
image-rendering: pixelated;
|
|
background-repeat: no-repeat;
|
|
|
|
color: white;
|
|
font-family: 'Lato', sans-serif;
|
|
font-size: 18px;
|
|
}
|