Beaver Form Style 6
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-style-6 { | |
background: #fafafa; | |
padding: 30px; | |
} | |
.form-style-6 .fl-input-group input, | |
.form-style-6 .fl-input-group textarea { | |
border-radius: 0; | |
padding: 12px; | |
height: auto; | |
background: #fff; | |
color: #222; | |
border: 1px solid #ddd; | |
border-bottom: 2px solid #1ba63e; | |
font-weight: 300; | |
font-size: 13px; | |
} | |
.form-style-6 .fl-input-group input::-webkit-input-placeholder { | |
color: #222; | |
} | |
.form-style-6 .fl-input-group textarea::-webkit-input-placeholder { | |
color: #222; | |
} | |
.form-style-6 .fl-input-group input:focus, | |
.form-style-6 .fl-input-group textarea:focus { | |
border-bottom: 2px solid #000; | |
background-color: #fff; | |
} | |
.form-style-6 .fl-input-group { | |
margin-bottom: 20px; | |
width: 50%; | |
float: left; | |
} | |
.form-style-6 .fl-input-group:nth-of-type(2n+1) { | |
padding-right: 20px; | |
} | |
.form-style-6 .fl-input-group.fl-message { | |
width: 100%; | |
float: none; | |
padding-right: 0; | |
clear: both; | |
} | |
.form-style-6 .fl-button-wrap { | |
margin-top: 30px; | |
} | |
.form-style-6 label { | |
display: none; | |
} | |
@media only screen and (max-width: 768px) { | |
.form-style-6 .fl-input-group { | |
width: 100%; | |
float: none; | |
clear: both; | |
} | |
.form-style-6 .fl-input-group:nth-of-type(2n+1) { | |
padding-right: 0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment