Skip to content

Instantly share code, notes, and snippets.

@briatte
Last active October 8, 2015 13:08
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 briatte/3336283 to your computer and use it in GitHub Desktop.
Save briatte/3336283 to your computer and use it in GitHub Desktop.
SRQM style for README files
/*
Styling for Markdown preview in TextMate, copty to:
~/Library/Application Support/TextMate/Managed/Bundles/Themes.tmbundle/Support/web-themes/SRQM/style.css
*/
@import url(http://fonts.googleapis.com/css?family=Ubuntu:400,500,400italic);
@import url(http://fonts.googleapis.com/css?family=Ubuntu+Mono);
*, p {
font-family: "Ubuntu", sans-serif;
line-height: 1.2;
background: #fff;
color: #000;
}
code, pre {
font-family: "Ubuntu Mono", monospace;
color: #444;
}
body {
padding-top: 2em;
}
a:link, a:visited {
font-weight: normal;
text-decoration: underline;
color: #123ACD;
}
strong, b, h1, h2, h3, h4, th {
color: #333;
font-weight: 500;
}
blockquote {
border-left: 4px solid #E6E5DD;
}
pre {
background-color: #f0f0f0;
border: 1px solid #cccbba;
}
table {
margin-left: 2em;
border: none;
}
th {
text-align: left;
font-weight: 500;
}
td {
padding-right: 1em;
}
.footnote {
color: #525151;
}
.footnote:before {
color: #525151;
}
.footnote:after {
color: #525151;
}
div.footnotes {
background: #F0F0F0;
}
.alternate {
background-color: #F0F0F0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment