Skip to content
Snippets Groups Projects
Commit decd2d48 authored by william light's avatar william light
Browse files

Merge pull request #4 from alecbrooks/master

Fix handling of subscripts and superscripts (including footnotes).
parents 2cfc7392 6bf89d81
No related branches found
No related tags found
No related merge requests found
......@@ -167,11 +167,29 @@ div.codehilite {
border-radius: 5px;
}
code, pre {
font-family: monospace;
background-color: rgb(238, 238, 238);
}
/*sub and sup stolen from Twitter bootstrap.*/
sub,
sup {
position: relative;
font-size: 75%;
line-height: 0;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
.post pre, .page pre {
padding: .5em;
font-size: 12px;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment