This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/assets/styles/reset.css

34 lines
No EOL
563 B
CSS

/* use a more-intuitive box-sizing model */
*, *::before, *::after {
box-sizing: border-box;
}
/* remove default margin */
* {
margin: 0;
}
/*
typographic tweaks
- add accessible line-height
- improve text rendering
*/
body {
line-height: 1.5;
-webkit-font-smoothing: antialiased;
}
/* remove built-in form typography styles */
input, button, textarea, select {
font: inherit;
}
/* avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
overflow-wrap: break-word;
}
/* create a root stacking context */
#root, #__next {
isolation: isolate;
}