Created
October 4, 2016 12:23
-
-
Save jainnidhi/5d25df8f2eb4b4bd22f7ad17e2974b89 to your computer and use it in GitHub Desktop.
Beaver Form Style 7
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
.form-style-7 { | |
background-image: url('http://miprimodaniblog.asystem.es/wp-content/uploads/2016/09/post3-1.png'); | |
background-repeat: no-repeat; | |
background-size: cover; | |
padding: 50px; | |
position: relative; | |
} | |
.form-style-7:before { | |
content: ""; | |
display: block; | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
background-color: rgba(0,0,0,0.8); | |
} | |
.form-style-7 .fl-input-group { | |
margin-bottom: 30px; | |
width: 33.33%; | |
float: left; | |
padding-right: 20px; | |
} | |
.form-style-7 .fl-phone { | |
padding-right: 0px; | |
} | |
.form-style-7 .fl-input-group.fl-message { | |
width: 100%; | |
float: none; | |
padding-right: 0; | |
clear: both; | |
} | |
.form-style-7 .fl-input-group input, | |
.form-style-7 .fl-input-group textarea { | |
border-radius: 0; | |
padding: 12px 15px; | |
height: auto; | |
background: transparent; | |
color: #222; | |
border: 2px solid #fff; | |
font-weight: 300; | |
font-size: 15px; | |
text-transform: uppercase; | |
} | |
.form-style-7 .fl-input-group input::-webkit-input-placeholder { | |
color: #fff; | |
} | |
.form-style-7 .fl-input-group textarea::-webkit-input-placeholder { | |
color: #fff; | |
} | |
.form-style-7 .fl-input-group input:focus, | |
.form-style-7 .fl-input-group textarea:focus { | |
border: 2px solid #e66322; | |
background: transparent; | |
} | |
.form-style-7 .fl-button-wrap { | |
position: relative; | |
} | |
.form-style-7 label { | |
display: none; | |
} | |
@media only screen and (max-width: 768px) { | |
.form-style-7 .fl-input-group { | |
width: 100%; | |
float: none; | |
clear: both; | |
padding-right: 0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment