You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
803 B
CSS

/* https://github.com/code913/snippets/blob/main/css/reset.scss */
*,
*::before,
*::after {
box-sizing: border-box;
padding: 0;
margin: 0;
}
html {
font-family: apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
font-size: clamp(16px, 2.5vmin, 32px);
font-weight: 400;
font-display: swap;
}
body {
line-height: 1.6875;
min-height: 100vh;
}
body p:not(:last-child) {
margin-block-end: 1.6875em;
}
button {
display: inline-block;
border: none;
color: inherit;
font-size: 1rem;
cursor: pointer;
text-align: center;
vertical-align: center;
box-shadow: none;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
}