Created
September 13, 2018 17:44
-
-
Save cziem/9ee1981cdbc59e057ed51681ba150e0a to your computer and use it in GitHub Desktop.
Contact Us Section
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
.contact_us { | |
display: flex; | |
height: auto; | |
background: #1d1e22; | |
flex-direction: column; | |
justify-content: flex-start; | |
align-items: center; | |
} | |
.contact_us h3 { | |
text-transform: uppercase; | |
font-size: 2rem; | |
color: #439076; | |
letter-spacing: -1px; | |
} | |
.contact_us form { | |
display: flex; | |
flex-direction: column; | |
width: 50%; | |
height: 60%; | |
border-radius: .3rem; | |
padding-bottom: 2rem; | |
input, textarea { | |
border: none; | |
border-bottom: 1px solid #888; | |
padding: .5rem; | |
margin: .6rem 0; | |
background-color: transparent; | |
} | |
textarea { | |
height: 10rem; | |
background: #2b2d33; | |
} | |
.submit { | |
border-bottom: none; | |
background: #439076; | |
padding: 1rem 0; | |
color: #fff; | |
font-size: 1rem; | |
cursor: pointer; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment