Skip to content

Instantly share code, notes, and snippets.

@jhunterkohler
Created October 24, 2021 19:21
Show Gist options
  • Save jhunterkohler/a0b85c67e371c7ebc8a6e3ac7494a976 to your computer and use it in GitHub Desktop.
Save jhunterkohler/a0b85c67e371c7ebc8a6e3ac7494a976 to your computer and use it in GitHub Desktop.
Interproject default global styles
/*
* 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