|
@import url("//fonts.googleapis.com/css?family=Titillium+Web"); |
|
|
|
html,body { background-color:#333; margin:0; padding:0; } |
|
|
|
*,*::before,*::after { box-sizing:border-box; } |
|
*:focus { outline:none; } |
|
|
|
input,textarea { appearance:none; background:none; } |
|
input::-moz-focus-inner { border:0; padding:0; } |
|
|
|
#form { |
|
font-family:"Titillium Web", arial, sans-serif; |
|
float:left; |
|
margin:28px 0 0 28px; |
|
overflow:auto; |
|
padding:0 0 9px; |
|
position:relative; |
|
} |
|
|
|
#form table { margin:0; padding:0; } |
|
|
|
#form input[type="submit"],#form input[type="reset"] { |
|
background-color:#666; |
|
border:none; |
|
border-radius:5px; |
|
color:#333; |
|
cursor:pointer; |
|
float:right; |
|
font-family:"Titillium Web", arial, sans-serif; |
|
font-size:21px; |
|
font-weight:400; |
|
margin:10px 0 0 15px; |
|
padding:5px 20px; |
|
text-decoration:none; |
|
transition:all 160ms linear; |
|
} |
|
|
|
#form input[type="submit"]:hover,#form input[type="reset"]:hover { background-color:#888; } |
|
|
|
#form input[type="text"],#form input[type="email"] { |
|
background-color:#666 !important; |
|
border:none; |
|
border-radius:5px; |
|
color:#E5E5E5; |
|
font-family:"Titillium Web", arial, sans-serif; |
|
font-size:16px; |
|
font-weight:400; |
|
height:43px; |
|
margin:0 0 10px; |
|
overflow:auto; |
|
padding:8px 0 8px 13px; |
|
width:416px; |
|
} |
|
|
|
input[type="email"]:required:invalid,input[type="email"]:focus:invalid { |
|
background-image:url("http://www.markhillard.com/images/lock.svg"); |
|
background-position:right 8px center; |
|
background-repeat:no-repeat; |
|
background-size:23px 23px; |
|
box-shadow:none; |
|
} |
|
|
|
input[type="email"]:required:valid,input[type="email"]:focus:valid { |
|
background-image:url("http://www.markhillard.com/images/unlock.svg"); |
|
background-position:right 8px center; |
|
background-repeat:no-repeat; |
|
background-size:23px 23px; |
|
} |
|
|
|
#form textarea { |
|
background-color:#666; |
|
border:none; |
|
border-radius:5px; |
|
clear:left; |
|
color:#E5E5E5; |
|
display:block; |
|
float:left; |
|
font-family:"Titillium Web", arial, sans-serif; |
|
font-size:16px; |
|
font-weight:400; |
|
height:241px; |
|
margin:0; |
|
overflow:auto; |
|
padding:8px 0 8px 13px; |
|
resize:none; |
|
width:416px; |
|
} |