Created
May 8, 2025 13:09
-
-
Save fabienhinault/0a730cf7a006be5de36cb93ea6ed5c49 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
/* Base styles and content styles */ | |
:root { | |
/* Browser default font-size is 16px, this way 1 rem = 10px */ | |
margin: 0; | |
padding: 0; | |
font-size: 62.5%; color-scheme: var(--color-scheme); } | |
html { margin: 0; | |
padding: 0; font-family: "Open Sans", sans-serif; color: var(--fg); | |
background-color: var(--bg); text-size-adjust: none; | |
-webkit-text-size-adjust: none; } | |
body { margin: 0; | |
padding: 0; font-size: 1.8rem; | |
overflow-x: hidden; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment