Last active
June 8, 2016 17:29
-
-
Save farnscosnippet/6067717 to your computer and use it in GitHub Desktop.
CSS: Input Fields at 100%
This file contains 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
.form-input input, .form-input textarea { display: block; width: 100%; padding: 0; border-width: 0; } | |
.form-input { border: 0; padding: 1vw; margin: 1vw; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; } | |
.form-button { margin: 1vw; } | |
.form-input input { } | |
.form-input textarea { } | |
.form-box button { display: block; border: 0; padding: 1vw; width: 100%; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment