Skip to content

Instantly share code, notes, and snippets.

@cziem
Created September 13, 2018 17:44
Show Gist options
  • Save cziem/9ee1981cdbc59e057ed51681ba150e0a to your computer and use it in GitHub Desktop.
Save cziem/9ee1981cdbc59e057ed51681ba150e0a to your computer and use it in GitHub Desktop.
Contact Us Section
.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