diff options
author | Cian Bagshaw <cian@cianb.xyz> | 2022-08-28 19:51:29 +0100 |
---|---|---|
committer | Cian Bagshaw <cian@cianb.xyz> | 2022-08-28 19:51:29 +0100 |
commit | 46b5b03df3cf02809d5d37ebd19a7875a53a9f4c (patch) | |
tree | 1d0ed5a9d07ef7abc8eabc8d0c474d6a681000c9 /style.css | |
parent | 5ce550f09ba470880b159585de45f68baeb93dc5 (diff) | |
download | cgitWiz-master.tar.bz2 cgitWiz-master.zip |
Added style-agnostic, semi-alpha background to blob, including line numbers.
Also, increased font-size, and expanded blob to full width.
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -165,8 +165,17 @@ div#cgit table.list a[href="/?s=owner"] { display: none; } | |||
165 | * code blobs | 165 | * code blobs |
166 | */ | 166 | */ |
167 | 167 | ||
168 | /* code background */ | 168 | /* blob */ |
169 | div#cgit .lines .highlight { background-color: inherit !important; } | 169 | div#cgit table.blob { |
170 | width: 100%; | ||
171 | font-size: 14px; | ||
172 | background-color: rgba(100,100,100,0.3); | ||
173 | } | ||
174 | |||
175 | /* blob text */ | ||
176 | div#cgit table.blob .lines .highlight { | ||
177 | background-color: inherit ; | ||
178 | } | ||
170 | 179 | ||
171 | div#cgit table.list td.commitgraph { | 180 | div#cgit table.list td.commitgraph { |
172 | font-family: monospace; | 181 | font-family: monospace; |