2021-10-15 16:39:21 -07:00
|
|
|
/* reset.css
|
|
|
|
* Eryn Wells <eryn@erynwells.me>
|
|
|
|
*/
|
|
|
|
|
2022-09-07 08:46:02 -07:00
|
|
|
* { box-sizing: border-box; }
|
2021-10-15 16:39:21 -07:00
|
|
|
|
2022-09-07 08:46:02 -07:00
|
|
|
button, h1, h2, h3, h4, h5, h6, input, ol, ul, p, textarea {
|
2021-10-15 16:39:21 -07:00
|
|
|
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;
|
|
|
|
}
|
2022-09-24 07:50:08 -07:00
|
|
|
|
|
|
|
pre { margin: 0; }
|