stagit-repositories

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

commit d31721074b1d4e8c0640843f54b2bee67cb3e398
parent 3eef33e248d6b883c8690e79b9e30ae39335c5cb
Author: Yuval Langer <yuval.langer@gmail.com>
Date:   Fri, 24 Nov 2023 23:27:55 +0200

Add color to the CSS for the target in the commit diffs.  Also change orange to coral.

Diffstat:
Mstyle.css | 23+++++++++--------------
1 file changed, 9 insertions(+), 14 deletions(-)

diff --git a/style.css b/style.css @@ -15,23 +15,18 @@ body { 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:target { background-color: rgba(255, 255, 255, 0.2); } -a.i { - color: powderblue; -} +.i { color: powderblue; } +.d { color: coral; } -a.d { - color: orange; -} +a.i { color: powderblue; } +a.d { color: coral; } + +/* +pre { color: silver; } +*/