File size: 863 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
/* PHASE 0: Reset */
html, body, header, nav, h1, a,
ul, li, strong, main, button, i,
section, img, div, h2, p, form,
fieldset, label, input, textarea,
span, article, footer, time, small {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font: inherit;
color: inherit;
text-align: inherit;
text-decoration: inherit;
vertical-align: inherit;
box-sizing: inherit;
background: transparent;
}
ul {
list-style: none;
}
img {
display: block;
width: 100%;
height: auto;
}
input[type="password"],
input[type="email"],
input[type="text"],
input[type="submit"],
textarea,
button {
/*
Get rid of native styling. Read more here:
http://css-tricks.com/almanac/properties/a/appearance/
*/
-webkit-appearance: none;
-moz-appearance: none;
}
button,
input[type="submit"] {
cursor: pointer;
}
body{
background: rgb(233,235,238);
}
|