Created
April 13, 2019 20:28
-
-
Save cilindrox/6a2b14c869371807d99563f1ff3601cc to your computer and use it in GitHub Desktop.
style.css
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
body { | |
font-family: Liberation Sans, Arial, sans-serif; | |
background-color: #fffaf7; | |
line-height: 1.3; | |
} | |
main { | |
max-width: 70ch; | |
padding: 2ch; | |
margin: auto; | |
} | |
header { | |
margin-bottom: 1.5rem; | |
} | |
h1 { | |
margin-bottom: .5rem; | |
} | |
time { | |
color: #888; | |
} | |
hr { | |
border: 2px solid #ddd; | |
margin: 2rem auto; | |
} | |
#fn { | |
font-size: 85%; | |
} | |
footer { | |
margin-top: 2rem; | |
text-align: center; | |
} | |
a { | |
color: #ff3c3c; | |
text-decoration: none; | |
outline: 0; | |
} | |
a:hover { | |
text-decoration: underline; | |
} | |
::selection { | |
background-color: #fff888; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment