diff options
Diffstat (limited to 'css/gitjoe.css')
-rw-r--r-- | css/gitjoe.css | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/css/gitjoe.css b/css/gitjoe.css index 1f60594..a3b4683 100644 --- a/css/gitjoe.css +++ b/css/gitjoe.css @@ -125,3 +125,27 @@ div#content tr:hover { background-color: #d1e2f4; } +a.line { + color: #8f3f71; +} + +a.line:hover { + background-color: #ffafef; +} + +pre.blob { + font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; + font-size: smaller; + background-color: #d1e2f4; + border-radius: 4px; + display: block; + margin: 0; + width: 80%; + overflow: auto; + margin-left: 1em; + margin-right: 1em; + padding: 10px 10px 10px 10px; + white-space: pre; + border: 1px solid #aaa; +} + |