Merge pull request #77 from epwalsh/master
Add styling for code blocks with line numbers
This commit is contained in:
commit
6d0a6ff97d
@ -39,3 +39,12 @@ var foo = function(x) {
|
|||||||
}
|
}
|
||||||
foo(3)
|
foo(3)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
And here is some more with line numbers
|
||||||
|
|
||||||
|
{% highlight python linenos %}
|
||||||
|
def bar(x):
|
||||||
|
return x * 2
|
||||||
|
|
||||||
|
print bar(2)
|
||||||
|
{% endhighlight %}
|
||||||
|
32
css/main.css
32
css/main.css
@ -590,14 +590,32 @@ table tr td :last-child {
|
|||||||
pre {
|
pre {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
background: #FAFAFA;
|
|
||||||
background-image: linear-gradient(#FAFAFA 50%, #FDFDFD 50%);
|
|
||||||
background-position: 0px 10px;
|
|
||||||
background-repeat: repeat;
|
|
||||||
background-size: 3em 3em;
|
|
||||||
border-left: 7px solid #444;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pre code {
|
pre code {
|
||||||
white-space: pre;
|
white-space: pre;
|
||||||
}
|
}
|
||||||
|
pre.highlight, .highlight > pre, td.code pre {
|
||||||
|
background: #FAFAFA;
|
||||||
|
background-image: linear-gradient(#F9F9F9 50%, #FDFDFD 50%);
|
||||||
|
background-repeat: repeat;
|
||||||
|
background-size: 3em 3em;
|
||||||
|
background-position: 0px 10px;
|
||||||
|
border-left: 7px solid #444;
|
||||||
|
}
|
||||||
|
code table, code table td, code table th, code table tbody, code table tr,
|
||||||
|
td.gutter pre {
|
||||||
|
padding: 0;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
.highlight > pre {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
td.code pre {
|
||||||
|
border-width: 0 0 0 2px;
|
||||||
|
border-style: solid;
|
||||||
|
border-color: #444;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
td.gutter {
|
||||||
|
padding-top: 3px;
|
||||||
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* .highlight { background: #ffffff; } Dean commented out */
|
/* .highlight { background: #ffffff; } Dean commented out */
|
||||||
.highlight pre { background-color: #fff; font-size: 16px }
|
/* .highlight pre { background-color: #fff; font-size: 16px } */
|
||||||
.highlight .c { color: #999988; font-style: italic } /* Comment */
|
.highlight .c { color: #999988; font-style: italic } /* Comment */
|
||||||
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
||||||
.highlight .k { font-weight: bold } /* Keyword */
|
.highlight .k { font-weight: bold } /* Keyword */
|
||||||
|
Loading…
Reference in New Issue
Block a user