Created
January 22, 2016 18:43
-
-
Save msecret/9c5248cc26db0d8ae8c3 to your computer and use it in GitHub Desktop.
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
// style.css | |
form#donation div label { | |
margin: 0 0 5px 0; | |
} | |
form#donation div input { | |
margin: 1em 0 5px 0; | |
} | |
#donation button.btn { | |
padding: 5px 10px; | |
background: blue; | |
color: #fff; | |
} | |
// partials/donation.html | |
<form id="donation"> | |
<div> | |
<label>First name</label> | |
<input type="text" name="fname" /> | |
<label>Last name</label> | |
<input type="text" name="lname" class="btn" /> | |
</div> | |
<button type="submit">donate</button> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment