Skip to content

Instantly share code, notes, and snippets.

@kccnma
Last active September 13, 2023 19:39
Show Gist options
  • Save kccnma/498a473b872c07d584191e6745b404ff to your computer and use it in GitHub Desktop.
Save kccnma/498a473b872c07d584191e6745b404ff to your computer and use it in GitHub Desktop.
/* GLOBAL RESET */
* { box-sizing: border-box; }
/* #TYPOGRAPHY */
body {
font-family: Helvetica, Arial, sans-serif;
color: rgba(0,0,0,.7);
max-width: 1000px;
margin: 0 auto;
padding: 1em;
font-size: 87.5%;
line-height: 1.5em;
}
h1 {
font-size: 3em;
}
/* #LINKS */
a {
color: rgba(0,0,0,.4);
text-decoration: none;
}
a:hover {
color: rgba(0,0,0,.6);
}
/* HELPERS */
.text-centered {
text-align: center;
}
/* #IMAGES */
img {
max-width: 100%;
height: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment