diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-08 19:23:00 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-08 19:23:00 +0200 |
commit | 31e3f9dde7f246a6453e3ffe50f473aadceb3d24 (patch) | |
tree | 2a7cb9a43fcdc7bc4e9e95f1ba4a9ccbf46d186f | |
parent | Removed bloat, better colors (diff) | |
download | gitjoe-www-31e3f9dde7f246a6453e3ffe50f473aadceb3d24.tar.gz gitjoe-www-31e3f9dde7f246a6453e3ffe50f473aadceb3d24.tar.bz2 gitjoe-www-31e3f9dde7f246a6453e3ffe50f473aadceb3d24.tar.xz gitjoe-www-31e3f9dde7f246a6453e3ffe50f473aadceb3d24.tar.zst gitjoe-www-31e3f9dde7f246a6453e3ffe50f473aadceb3d24.zip |
Test source
-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; +} + |