Files
2014-10-04 17:03:47 +02:00

108 lines
1.3 KiB
CSS
Executable File

/*!
* full image layout
* Landing page by Hackerloop
*/
/*
Typo
*/
.fullbackground {
background: url('http://lorempixel.com/1920/1080/cats/') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
.background-image-overlay {
display:block;
position: fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index:-1;
background:url(../img/background-image-overlay.png) repeat;
}
body {
font-size: 18px;
color: #fff;
font-family: 'Open Sans', sans-serif;
background: transparent;
}
h1 {
font-weight: bold;
font-size: 2.1em;
}
p {
padding: 12px 0;
}
.logo {
font-family: Montserrat, sans-serif;
font-weight: 700;
font-size: 2em;
}
/*
Mailchimp form
*/
.form-inline {
}
#mc-form {
}
.error {
font-weight: 400;
font-size: 0.8em;
color: red;
}
.valid {
font-weight: 400;
font-size: 0.8em;
}
.mc-label {
font-weight: 400;
font-size: 0.8em;
}
/*
Responsive variables
*/
@media(min-width:1024px) {
}
@media(min-width:768px) {
.content {
padding-top: 10%;
text-align: right;
}
}
@media(max-width:767px) {
body {
}
.content {
padding: 5%;
}
.form-inline {
width: 40%;
}
}