Created
October 24, 2021 19:21
-
-
Save jhunterkohler/a0b85c67e371c7ebc8a6e3ac7494a976 to your computer and use it in GitHub Desktop.
Interproject default global styles
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
/* | |
* Copyright (C) 2021 Hunter Kohler <[email protected]> | |
*/ | |
/* | |
* Global variables | |
*/ | |
:root { | |
} | |
/* | |
* Set box-sizing for inheritance. | |
*/ | |
html { | |
box-sizing: border-box; | |
} | |
/* | |
* Inheritance starting at the `html` box-sizing. | |
*/ | |
*, | |
*::before, | |
*::after { | |
box-sizing: inherit; | |
} | |
/* | |
* Remove default margin. | |
*/ | |
body { | |
margin: 0; | |
} | |
/* | |
* Override link coloring. | |
*/ | |
a { | |
color: #000000; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment