29 lines
513 B
Plaintext
29 lines
513 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");
|
|
|
|
@media (min-width: 992px) {
|
|
background-image: url("../img/background@2x.jpg");
|
|
}
|
|
|
|
/* Full height */
|
|
height: 100%;
|
|
|
|
/* Center and scale the image nicely */
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
}
|