Skip to content

Instantly share code, notes, and snippets.

@jainnidhi
Created October 4, 2016 12:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jainnidhi/020d9bdb6fae8265f968e92e2b5e07e3 to your computer and use it in GitHub Desktop.
Save jainnidhi/020d9bdb6fae8265f968e92e2b5e07e3 to your computer and use it in GitHub Desktop.
Beaver Form Style 6
.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