web-yj.kwul/css/style.css
2018-07-07 12:28:35 +02:00

28 lines
509 B
CSS

@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;
}
@media (min-width: 992px) {
.bg {
background-image: url("../img/background@2x.jpg");
}
}