Text- u. Style-Kosmetik
This commit is contained in:
+20
-13
@@ -1,27 +1,34 @@
|
||||
@import url('https://fonts.googleapis.com/css?family=Quicksand');
|
||||
body,
|
||||
html {
|
||||
margin: 0;
|
||||
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: url("../img/background.jpg") no-repeat center center fixed;
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
-o-background-size: cover;
|
||||
background-size: cover;
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
.bg {
|
||||
body {
|
||||
background-image: url("../img/background@2x.jpg");
|
||||
}
|
||||
}
|
||||
.container.filled {
|
||||
color: rgba(0, 0, 0, 0.7);
|
||||
background-color: rgba(255, 255, 255, 0.75);
|
||||
}
|
||||
.container .intro {
|
||||
height: 100vh;
|
||||
text-align: center;
|
||||
}
|
||||
.container .intro .btn {
|
||||
margin: auto;
|
||||
}
|
||||
.container img {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
+25
-12
@@ -2,27 +2,40 @@
|
||||
|
||||
|
||||
body, html {
|
||||
margin: 0;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
color: #fff;
|
||||
font-family: 'Quicksand', sans-serif;
|
||||
}
|
||||
|
||||
.bg {
|
||||
/* The image used */
|
||||
background-image: url("../img/background.jpg");
|
||||
|
||||
background: url("../img/background.jpg") no-repeat center center fixed;
|
||||
@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;
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
-o-background-size: cover;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.container {
|
||||
&.filled {
|
||||
color: rgba(0, 0, 0, 0.7);
|
||||
background-color: rgba(255, 255, 255, 0.75);
|
||||
}
|
||||
|
||||
.intro {
|
||||
height: 100vh;
|
||||
text-align: center;
|
||||
|
||||
.btn {
|
||||
margin: auto;
|
||||
}
|
||||
}
|
||||
|
||||
img {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user