Skip to content

Instantly share code, notes, and snippets.

@yagamicoder
Created September 23, 2016 02:29
Show Gist options
  • Save yagamicoder/351a261276e6483eac9f6ffcbfb72563 to your computer and use it in GitHub Desktop.
Save yagamicoder/351a261276e6483eac9f6ffcbfb72563 to your computer and use it in GitHub Desktop.
Main css
*{margin:0;padding:0;}
body{
background:#A4A4A4;
color:#FFF;
font: normal 20px/1.5em 'Ubuntu Condensed';}
/*Contact Form*/
#ajax-form{margin-top:25px;}
#ajax-form > input{
border:0;
display:block;
font: normal 20px/1.5em 'Ubuntu Condensed';
margin: 10px 5px;
padding: 10px;
width:230px;}
#ajax-form > input:focus,
#ajax-form > textarea:focus{
box-shadow: 0 0 15px #8a0808;
transition: all ease .5s;}
#ajax-form > input[type="submit"]{
background:#90b389;
box-shadow: 1px 1px 12px #FFF;
border:0;
color:#FFF;
cursor: pointer;
margin-top:35px;
outline: none;
transition: all ease .5s;
width:150px;
}
#ajax-form > input[type="submit"]:hover{
color:#585858;
box-shadow: 1px 1px 18px #FFF;
transition: all ease .5s;}
#ajax-form > textarea{border: 0;font: normal 20px/1.5em 'Ubuntu Condensed';}
#contact{
padding-top: 30px;
margin: 0 auto;
width:400px;}
#error{
background:#8a0808;
box-shadow: 1px 1px 12px #585858;
color: #FFF;
display:none;
padding:5px;
text-align:center;
width:300px;}
.myemail{color:#585858;text-decoration: underline;}
#success{
background:#90b389;
box-shadow: 1px 1px 12px #585858;
color: #FFF;
display:none;
padding:5px;
text-align:center;
width:300px;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment