Created
October 23, 2025 16:04
-
-
Save thegeorgenikhil/fcedd463eaf7a9788c086d5c179a21e9 to your computer and use it in GitHub Desktop.
Minimal CSS to make everything beautiful.
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
| body { | |
| margin: 0 auto; | |
| max-width: 50em; | |
| font-family: "Roboto", "Helvetica", "Arial", sans-serif; | |
| line-height: 1.5; | |
| padding: 4em 1em; | |
| color: #566b78; | |
| } | |
| h1, | |
| h2, | |
| strong { | |
| color: #333; | |
| } | |
| h2 { | |
| margin-top: 1em; | |
| padding-top: 1em; | |
| } | |
| a { | |
| color: #e81c4f; | |
| } | |
| /* Roboto - Google Fonts | |
| <link rel="preconnect" href="https://fonts.googleapis.com"> | |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
| <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet"> */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment