Created
February 8, 2022 05:29
-
-
Save michventura/170cd9725cdaa9dc57d8466f4b4ee5cc to your computer and use it in GitHub Desktop.
Bare 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
/* Reset */ | |
*, | |
*::before, | |
*::after { | |
box-sizing: border-box; | |
} | |
body, | |
h1, | |
h2, | |
h3, | |
h4, | |
h5, | |
p, | |
figure, | |
picture { | |
margin: 0; | |
} | |
body { | |
line-height: 1.5; | |
min-height: 100vh; | |
} | |
img, | |
picture { | |
max-width: 100%; | |
display: block; | |
} | |
input, | |
button, | |
textarea, | |
select { | |
font: inherit; | |
} | |
@media (prefers-reduced-motion: reduce) { | |
*, | |
*::before, | |
*::after { | |
animation-duration: 0.01ms !important; | |
animation-iteration-count: 1 !important; | |
transition-duration: 0.01ms !important; | |
scroll-behaviour: auto !important; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment