Skip to content

Instantly share code, notes, and snippets.

@digital-synapse
Created September 5, 2018 05:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save digital-synapse/1821f8727180e24664a49acbaa02bc3c to your computer and use it in GitHub Desktop.
Save digital-synapse/1821f8727180e24664a49acbaa02bc3c to your computer and use it in GitHub Desktop.
simple dark theme css for markdown
@import 'https://fonts.googleapis.com/css?family=Open+Sans';
body {
font-family: 'Open Sans', sans-serif;
line-height: 1.75em;
font-size: 16px;
background-color: #222;
color: #aaa;
padding: 15px;
}
p {
font-size: 16px;
line-height: 18px;
}
h1 {
font-size: 30px;
line-height: 34px;
}
h2 {
font-size: 20px;
line-height: 25px;
border-bottom: 1px solid #D8D8D8;
}
h3 {
font-size: 16px;
line-height: 16px;
padding-top: 15px;
}
hr {
height: 1px;
background-color: #d8d8d8;
border: none;
width: 100%;
margin: 0px;
}
a {
color: #aaa;
text-decoration: inherit;
}
a[href^="#"] {
color: #aaa;
text-decoration: underline;
}
img {
max-width: 100%;
}
li {
line-height: 1.5em;
}
table { width: 100%; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment