Last active
March 30, 2026 09:28
-
-
Save PratikDeoghare/926ccc4e5227f993626e804923c851e5 to your computer and use it in GitHub Desktop.
Style CSS with color
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 { | |
| background-color: #eeb480; | |
| } | |
| p { | |
| padding-bottom: 1em; | |
| } | |
| article { | |
| padding: 2em; | |
| max-width: 39em; | |
| margin-left: auto; | |
| margin-right: auto; | |
| margin-bottom: 32em; | |
| line-height: 1.55; | |
| background-color: #fbf6dd; | |
| border-radius: 1rem; | |
| font-family: sans-serif; | |
| font-size: large; | |
| } | |
| a { | |
| color: black; | |
| } | |
| table, th, td { | |
| border: 1px solid black; | |
| border-collapse: collapse; | |
| padding: 5px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment