Last active
October 17, 2023 23:13
-
-
Save Asjas/4d84111064a02e2de60efdf3a73c1296 to your computer and use it in GitHub Desktop.
My CSS Reset
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Box sizing rules */ | |
html { | |
box-sizing: border-box; | |
} | |
/* Set core root defaults */ | |
html:focus-within { | |
scroll-behavior: smooth; | |
} | |
*, *:before, *:after { | |
box-sizing: inherit; | |
} | |
/* Remove default margin */ | |
* { | |
margin: 0; | |
} | |
/* Percentage based heights */ | |
html, body { | |
height: 100%; | |
} | |
/* Set core body defaults */ | |
body { | |
line-height: 1.5; | |
-webkit-font-smoothing: antialiased; | |
} | |
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */ | |
ul[role='list'], | |
ol[role='list'] { | |
list-style: none; | |
} | |
/* Make images, videos and icons easier to work with */ | |
img, picture, video, canvas, svg { | |
display: block; | |
max-width: 100%; | |
} | |
/* Inherit fonts for inputs and buttons */ | |
input, button, textarea, select { | |
font: inherit; | |
letter-spacing: inherit; | |
word-spacing: inherit; | |
} | |
/* More sensible line-wrapping */ | |
p, h1, h2, h3, h4, h5, h6 { | |
overflow-wrap: break-word; | |
hyphens: auto; | |
} | |
/* A elements that don't have a class get default styles */ | |
a:not([class]) { | |
text-decoration-skip-ink: auto; | |
} | |
/* React Framework Specific */ | |
#root, #__next { | |
isolation: isolate; | |
} | |
/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */ | |
@media (prefers-reduced-motion: reduce) { | |
html:focus-within { | |
scroll-behavior: auto; | |
} | |
*, | |
*::before, | |
*::after { | |
animation-duration: 0.01ms !important; | |
animation-iteration-count: 1 !important; | |
transition-duration: 0.01ms !important; | |
scroll-behavior: auto !important; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment