Created
January 20, 2016 13:27
-
-
Save uhlhosting/56aa5aca2eb1988f1d2f to your computer and use it in GitHub Desktop.
Wrap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.wrap { | |
width: 605px; | |
margin: 100px auto 0; | |
text-align: center; | |
} | |
.wrap h1 { | |
font-size: 30px; | |
font-weight: 700; | |
margin: 0 0 90px; | |
} | |
.wrap h2 { | |
font-size: 24px; | |
font-weight: 400; | |
line-height: 45px; | |
margin: 0 0 80px; | |
} | |
.wrap h3 { | |
font-size: 24px; | |
font-weight: 400px; | |
margin: 0 0 45px; | |
} | |
.wrap .author_link { | |
margin-top: 15px; | |
color: #616161; | |
margin: 0 0 50px; | |
} | |
.wrap .author_link a { | |
color: #000; | |
} | |
/** | |
* COUNTDOWN | |
**/ | |
.wrap .countdown { | |
margin: 0 0 85px; | |
} | |
.wrap .countdown span { | |
font-size: 30px; | |
} | |
/** | |
* SUBSCRIBE FORM | |
**/ | |
.wrap form.subscribe_form { | |
width: 465px; | |
margin: 0 0 75px; | |
display: inline-block; | |
border: 3px solid #e0e0e0; | |
box-sizing: border-box; | |
} | |
.wrap form.subscribe_form input { | |
margin: 0; | |
outline: 0; | |
border: 0; | |
float: left; | |
font-size: 18px; | |
padding: 20px 25px; | |
box-sizing: content-box; | |
} | |
.wrap form.subscribe_form input[type="text"] { | |
width: 245px; | |
} | |
.wrap form.subscribe_form input[type="submit"] { | |
background: #000; | |
color: #fff; | |
float: right; | |
cursor: pointer; | |
padding: 20px 30px; | |
border-left: 3px solid #e0e0e0; | |
} | |
.wrap form.subscribe_form input[type="submit"]:hover { | |
background: #fff; | |
color: #000; | |
border-left: 3px solid #e0e0e0; | |
} | |
.wrap form.subscribe_form input[type="submit"]:active { | |
background: #1e1e1e; | |
color: #fff; | |
} | |
.wrap form.subscribe_form .error { | |
color: red; | |
} | |
.wrap form.subscribe_form label.error { | |
display: none !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment