stagit-repositories

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 3eef33e248d6b883c8690e79b9e30ae39335c5cb
parent eeecb02bcd80c1d29f5f8e55ed2a89a28931d973
Author: Yuval Langer <yuval.langer@gmail.com>
Date:   Fri, 24 Nov 2023 22:51:51 +0200

Add colors to the CSS for the inserted and deleted lines in the commit diffs.

Diffstat:
Mstyle.css | 17++++++++++++++++-
1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/style.css b/style.css @@ -12,11 +12,26 @@ body { background-color: #222; } - ul { list-style: none; } li:before { content: "\1F4A9"; } +.i { + color: powderblue; +} + +.d { + color: orange; +} + a:link { color: springgreen; text-decoration: none; } a:visited { color: cadetblue; text-decoration: none; } a:hover { color: salmon; text-decoration: underline; } a:active { color: red; text-decoration: underline; } + +a.i { + color: powderblue; +} + +a.d { + color: orange; +}