39 lines
596 B
CSS
39 lines
596 B
CSS
/* reset.css
|
|
* Eryn Wells <eryn@erynwells.me>
|
|
*/
|
|
|
|
* { box-sizing: border-box; }
|
|
|
|
button, h1, h2, h3, h4, h5, h6, input, ol, ul, p, textarea {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-spacing: 0;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
button,
|
|
input,
|
|
textarea {
|
|
font: inherit;
|
|
background: transparent;
|
|
border: 0;
|
|
outline: 0;
|
|
-webkit-appearance: none;
|
|
}
|
|
|
|
button,
|
|
input[type='button'],
|
|
input[type='submit'] {
|
|
cursor: pointer;
|
|
}
|
|
|
|
input:-webkit-autofill,
|
|
textarea:-webkit-autofill {
|
|
box-shadow: 0 0 0 6rem var(--white) inset;
|
|
}
|
|
|
|
pre { margin: 0; }
|