mirror of
https://github.com/wassname/bootstrap-landing-pages.git
synced 2026-06-27 18:58:44 +08:00
105 lines
1.3 KiB
CSS
Executable File
105 lines
1.3 KiB
CSS
Executable File
/*!
|
|
* Landing page by Hackerloop
|
|
*/
|
|
|
|
|
|
/*
|
|
Typo
|
|
*/
|
|
|
|
body {
|
|
font-size: 18px;
|
|
font-family: 'Open Sans', sans-serif;
|
|
|
|
}
|
|
|
|
h1 {
|
|
font-weight: bold;
|
|
}
|
|
|
|
p {
|
|
padding: 12px 0;
|
|
}
|
|
|
|
/*
|
|
Left column
|
|
*/
|
|
|
|
.logo {
|
|
font-family: Montserrat, sans-serif;
|
|
color: #fff;
|
|
font-weight: 700;
|
|
font-size: 36px;
|
|
padding: 24px 0 0 24px;
|
|
}
|
|
.full-image {
|
|
display: block;
|
|
width: 50%;
|
|
background: url('http://lorempixel.com/1280/900/cats/3') no-repeat center center scroll;
|
|
-webkit-background-size: cover;
|
|
-moz-background-size: cover;
|
|
background-size: cover;
|
|
-o-background-size: cover;
|
|
}
|
|
|
|
/*
|
|
Right column
|
|
*/
|
|
|
|
.content {
|
|
padding: 24px 48px;
|
|
}
|
|
|
|
.fork-button {
|
|
text-align: center;
|
|
}
|
|
|
|
/*
|
|
Mailchimp form
|
|
*/
|
|
|
|
#mc-form {
|
|
padding: 48px 0 24px;
|
|
}
|
|
|
|
.error {
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
color: red;
|
|
}
|
|
.valid {
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
}
|
|
.mc-label {
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
}
|
|
|
|
/*
|
|
Responsive variables
|
|
*/
|
|
|
|
@media(min-width:1024px) {
|
|
|
|
}
|
|
|
|
@media(min-width:768px) {
|
|
|
|
}
|
|
|
|
@media(max-width:767px) {
|
|
.logo {
|
|
text-align: center;
|
|
padding-left: 0;
|
|
}
|
|
.full-image {
|
|
width: 100%;
|
|
max-height: 200px;
|
|
}
|
|
.content {
|
|
padding: 12px 24px;
|
|
}
|
|
|
|
}
|