Created
November 26, 2025 07:44
-
-
Save bueltge/fe6642b47283eb721586d46ee0e2b9d1 to your computer and use it in GitHub Desktop.
starter.css
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
| /** | |
| * Minimal CSS Starter. | |
| * | |
| * More is not necessary, focus on speed and important thinks. | |
| */ | |
| ::selection, | |
| ::target-text { | |
| background: #000; | |
| color: #fff; | |
| } | |
| html { | |
| -webkit-font-smoothing: antialiased; | |
| scroll-behavior: smooth; | |
| text-wrap: pretty; | |
| } | |
| @view-transition { | |
| navigation: auto; | |
| } | |
| /** | |
| * Minimal Dark Mode. | |
| */ | |
| @media (prefers-color-scheme: dark) { | |
| * { | |
| background-color: inherit; | |
| color: inherit; | |
| } | |
| html, | |
| img:not([src$='.svg']) { | |
| filter: invert(1) hue-rotate(180deg); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment