Created
March 29, 2022 18:22
-
-
Save michventura/3321035e35f324ffc7f8c7cb09f434dd to your computer and use it in GitHub Desktop.
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
*, | |
*::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; | |
} | |
ul { | |
margin: 0; | |
padding-inline: 0; | |
} | |
li { | |
list-style: none; | |
} | |
img, | |
picture { | |
max-width: 100%; | |
display: block; | |
} | |
@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