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.
28 lines (23 loc) • 695 B
CSS
/* CONVENIENT/INTUITIVE STYLING */
html *, html ::before, html ::after {
/* Background images are not repeated. */
background-repeat: no-repeat;
/* Mask images are not repeated. */
mask-repeat: no-repeat;
}
html ::before, html ::after {
/* Inherit border-radius. */
border-radius: inherit;
/* Inherit vertical alignment. */
vertical-align: inherit;
}
/* REDUCE MOTION */
@media (prefers-reduced-motion: reduce) {
html *, html ::before, html ::after {
/* Remove animations and transitions when user prefers it. */
animation-duration: 0.01ms ;
animation-iteration-count: 1 ;
transition-duration: 0.01ms ;
scroll-behavior: auto ;
}
}