-
-
Save psahalot/10126f68beb87f6803c95d3c86f421b6 to your computer and use it in GitHub Desktop.
Beaver Form Style 10
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-10 { | |
background-image: url('https://wpbeaveraddons.com/wp-content/uploads/2016/06/demo-3.jpg'); | |
background-repeat: no-repeat; | |
background-size: cover; | |
padding: 50px; | |
position: relative; | |
} | |
.form-style-10:before { | |
content: ""; | |
display: block; | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
background-color: rgba(0,0,0,0.7); | |
} | |
.form-style-10 .fl-input-group { | |
margin-bottom: 20px; | |
} | |
.form-style-10 .fl-input-group input, | |
.form-style-10 .fl-input-group textarea { | |
border-radius: 0; | |
padding: 12px 15px; | |
height: auto; | |
background: #f3f3f3; | |
color: #222; | |
border: 2px solid transparent; | |
font-weight: 300; | |
font-size: 15px; | |
} | |
.form-style-10 .fl-input-group input::-webkit-input-placeholder { | |
color: transparent; | |
} | |
.form-style-10 .fl-input-group textarea::-webkit-input-placeholder { | |
color: transparent; | |
} | |
.form-style-10 .fl-input-group input:focus, | |
.form-style-10 .fl-input-group textarea:focus { | |
border: 2px solid #872097; | |
background: #f3f3f3; | |
} | |
.form-style-10 .fl-button-wrap { | |
position: relative; | |
margin-top: 40px; | |
} | |
.form-style-10 label { | |
color: #fff; | |
font-weight: 300; | |
text-transform: uppercase; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment