mirror of
https://github.com/capistrano/capistrano
synced 2023-03-27 23:21:18 -04:00
Fix bg color and overflow for .highlight blocks
Thanks to @olleolleolle for the suggestion! https://github.com/capistrano/capistrano/pull/1768#issuecomment-277459234
This commit is contained in:
parent
f1584eda66
commit
f906bb65c5
1 changed files with 11 additions and 4 deletions
|
@ -1,10 +1,17 @@
|
|||
// A modified version of https://raw.githubusercontent.com/richleland/pygments-css/master/monokai.css
|
||||
|
||||
.highlighter-rouge {
|
||||
background-color: #272822;
|
||||
}
|
||||
|
||||
.highlight {
|
||||
background: #272822;
|
||||
padding: 1em;
|
||||
font-size: 0.9em;
|
||||
overflow: auto;
|
||||
background: #272822;
|
||||
padding: 1em;
|
||||
font-size: 0.9em;
|
||||
overflow: auto;
|
||||
line-height: 150%;
|
||||
overflow-y: auto;
|
||||
overflow-x: scroll;
|
||||
}
|
||||
|
||||
.highlight code {
|
||||
|
|
Loading…
Reference in a new issue