added themeing and minor fixes

This commit is contained in:
wagoodman 2016-12-26 09:59:14 -05:00
parent 29d732b85f
commit d275b2b468
25 changed files with 159 additions and 1236 deletions

View file

@ -61,4 +61,60 @@ body .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
body .vc { color: #f8f8f2 } /* Name.Variable.Class */
body .vg { color: #f8f8f2 } /* Name.Variable.Global */
body .vi { color: #f8f8f2 } /* Name.Variable.Instance */
body .il { color: #ae81ff } /* Literal.Number.Integer.Long */
body .il { color: #ae81ff } /* Literal.Number.Integer.Long */
/* Override the surrounding theme to match a dark theme*/
#topbar {
background: #272822;
color: #f8f8f2
}
td.linenos {
background: #272822;
padding: 0 5px 0 5px;
border-right: 1px solid #272822;
border-left: 1px solid #272822;
border-top: 1px solid #272822;
}
div.codebox table {
border-right: 0px solid #272822;
border-left: 0px solid #272822;
border-top: 0px solid #272822;
border-bottom: 0px solid #272822;
}
/*
These styles are used to highlight each diff line.
Note: for partial like highlight change to "display:block-inline"
*/
span.left_diff_change {
background-color: #FFCF74;
display: block
}
span.left_diff_add {
background-color: #B1B1B1;
display: block
}
span.left_diff_del {
background-color: #FF6B6B;
display: block
}
span.lineno_q {
display: block;
}
span.right_diff_change {
background-color: #FFCF74;
display: block
}
span.right_diff_add {
background-color: #83FF83;
display: block
}
span.right_diff_del {
background-color: #B1B1B1;
display: block
}
span.clearbg {
background-color: transparent;
}