Skip to content
Snippets Groups Projects
Commit 6bf89d81 authored by alecbrooks's avatar alecbrooks
Browse files

Add superscript and subscript formatting.

parent 88617886
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.
Finish editing this message first!
Please register or to comment