Skip to content

Instantly share code, notes, and snippets.

@ecylmz
Forked from roktas/.gitignore
Created December 10, 2011 13:30
Show Gist options
  • Save ecylmz/1455168 to your computer and use it in GitHub Desktop.
Save ecylmz/1455168 to your computer and use it in GitHub Desktop.
CSS to add line numbers to embedded gists
.gist-highlight {
border-left: 3ex solid #eee;
position: relative;
}
.gist-highlight pre {
counter-reset: linenumbers;
}
.gist-highlight pre div:before {
color: #aaa;
content: counter(linenumbers);
counter-increment: linenumbers;
left: -3ex;
position: absolute;
text-align: right;
width: 2.5ex;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment