26 lines
422 B
Plaintext
26 lines
422 B
Plaintext
@import url('https://fonts.googleapis.com/css?family=Quicksand');
|
|
|
|
|
|
body, html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
color: #fff;
|
|
font-family: 'Quicksand', sans-serif;
|
|
}
|
|
|
|
.bg {
|
|
/* The image used */
|
|
background-image: url("../img/background.jpg");
|
|
|
|
/* Full height */
|
|
height: 100%;
|
|
|
|
/* Center and scale the image nicely */
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
}
|
|
|