makeup-style
Version:
Minimal CSS files for correcting, improving and normalizing default browser CSS, for narrow viewports first, and provides convenient and intuitive CSS-defaults for styling in general and typographic style.
23 lines (18 loc) • 486 B
CSS
/* CONVENIENT/INTUITIVE STYLING */
html *, html ::before, html ::after {
background-repeat: no-repeat;
mask-repeat: no-repeat;
}
html ::before, html ::after {
border-radius: inherit;
vertical-align: inherit;
}
/* REDUCE MOTION */
@media (prefers-reduced-motion: reduce) {
html *, html ::before, html ::after {
animation-duration: 0.01ms ;
animation-iteration-count: 1 ;
transition-duration: 0.01ms ;
scroll-behavior: auto ;
}
}