Skip to content

Instantly share code, notes, and snippets.

@gaveen
Created October 7, 2012 10:51
Show Gist options
  • Save gaveen/3847848 to your computer and use it in GitHub Desktop.
Save gaveen/3847848 to your computer and use it in GitHub Desktop.
A simple CSS file I use with Pandoc
/*
This is a simple CSS file I pass as -c when generating a HTML
file out of my markdown file with a bunch of links inside, using
Pandoc.
*/
body {
width: 960px;
margin: 0 150px 50px;
font: 13px/1.3 'DejaVu Sans', sans-serif;
color: rgb(102, 102, 102);
}
h1 { margin: 1.125em 0 -0.3em; }
a:link { color: rgb(65, 131, 196); text-decoration: none; }
a:visited { color: rgb(65, 131, 196); text-decoration: none; }
a:hover { color: rgb(65, 131, 196); text-decoration: underline; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment