Last active
September 13, 2023 19:39
-
-
Save kccnma/498a473b872c07d584191e6745b404ff to your computer and use it in GitHub Desktop.
This file contains 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
/* 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