Files
raphaelsalaja__userinterfac…/styles/styles.reset.css
Raphael S. e3bb84c1b8 feat: predictive prefetching article and font features article
Add predictive prefetching demos with ForesightJS integration including
grid-based tile comparison, trajectory visualization, and timing bars.
Add "Your Font Can Do More" article with OpenType feature demos.

Made-with: Cursor
2026-03-17 15:22:35 +00:00

88 lines
1.2 KiB
CSS

*,
*::before,
*::after {
box-sizing: border-box;
}
* {
-webkit-font-smoothing: antialiased;
border: 0;
color: inherit;
font-family: inherit;
font-feature-settings: "liga", "calt", "ccmp", "locl", "kern";
font-size: inherit;
font-weight: inherit;
line-height: inherit;
margin: 0;
padding: 0;
scroll-behavior: smooth;
scroll-padding-top: 128px;
text-decoration: none;
text-rendering: optimizeLegibility;
text-transform: none;
text-wrap: pretty;
vertical-align: baseline;
}
body {
padding: 0;
margin: 0;
}
img,
picture,
video,
canvas,
svg {
display: block;
max-width: 100%;
}
input,
button,
textarea,
select {
font: inherit;
}
ul,
li,
ol {
padding: 0;
margin: 0;
list-style: none;
}
button {
padding: 0;
font: inherit;
text-align: unset;
cursor: pointer;
user-select: none;
background: none;
border: none;
}
input {
padding: 0;
font: inherit;
background: none;
border: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
margin: 0;
-webkit-appearance: none;
}
input[type="number"] {
-moz-appearance: textfield;
appearance: textfield;
}
#root,
#__next {
isolation: isolate;
}