stagit

Custom stagit fork for git.deurzen.net
git clone git://git.deurzen.net/stagit
Log | Files | Refs | README | LICENSE

commit 32be1902496753a36bf6af0298394f2d2bd02bc3
parent fc314f4ec47c29b19c216fe362b689c5b812c6b0
Author: deurzen <max@deurzen.net>
Date:   Wed, 25 May 2022 05:07:48 +0200

adds url emphasis

Diffstat:
Mstyle.css | 34++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+), 0 deletions(-)

diff --git a/style.css b/style.css @@ -139,6 +139,23 @@ pre a.d:hover { text-decoration: none; } +.url td:nth-child(2) { + padding-top: 0.4em; + padding-bottom: 0.4em; +} + +.url td:nth-child(2) span { + padding: 1px 5px; + margin-left: -6px; + background-color: #f7f7f7; + border: 1px solid #ddd; + border-radius: 5px; +} + +.url td:nth-child(2) span a { + color: #8a54ed; +} + @media (max-width: 768px) { #content { width: 100%; @@ -220,4 +237,21 @@ pre a.d:hover { #files tr:hover td { background-color: #141433; } + + .url td:nth-child(2) { + padding-top: 0.4em; + padding-bottom: 0.4em; + } + + .url td:nth-child(2) span { + padding: 1px 5px; + margin-left: -6px; + background-color: #141433; + border: 1px solid #808080; + border-radius: 5px; + } + + .url td:nth-child(2) span a { + color: #FF2079; + } }