styles

custom css
git clone git://git.pyratebeard.net/styles.git
Log | Files | Refs

commit 280d1372216bc2c608ad7e136e4d3966eb50c90b
parent f60ed42afc0b99954e7591df71bcf5ed3a71ee75
Author: pyratebeard <root@pyratebeard.net>
Date:   Mon,  8 Jun 2026 23:21:03 +0100

style(stagit): sets evil red theme

Diffstat:
Mstagit.css | 64++++++++++++++++++++++++++++++++++++++++++----------------------
1 file changed, 42 insertions(+), 22 deletions(-)

diff --git a/stagit.css b/stagit.css @@ -19,13 +19,23 @@ font-style: normal; } +@font-face { + font-family: 'UnifontExMono'; + src: url('http://stgiga.github.io/UnifontEX/UnifontExMono.eot'); /* IE9 Compat Modes */ + src: url('http://stgiga.github.io/UnifontEX/UnifontExMono.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('https://stgiga.github.io/UnifontEX/UnifontExMono.woff') format('woff'), /* Pretty Modern Browsers */ + url('https://stgiga.github.io/UnifontEX/UnifontExMono.ttf') format('truetype'), /* Safari, Android, iOS */ + url('http://stgiga.github.io/UnifontEX/UnifontExMono.woff2') format('woff2'), /* Super Modern Browsers */ + url('http://stgiga.github.io/UnifontEX/UnifontExMono.svg#UnifontExMono') format('svg'); /* Legacy iOS */ +} + body { - color: #fbf0d2; - background-color: #1f1d1b; - font-family: 'main-font'; - letter-spacing: 1.1px; - font-size: 0.9em; - line-height: 1.3; + color: #f3f1ef; + background-color: #0e0d0b; + font-family: 'UnifontExMono'; + /*letter-spacing: 1.1px;*/ + /*font-size: 0.9em;*/ + line-height: 1.6; } h1, h2, h3, h4, h5, h6 { @@ -33,11 +43,11 @@ h1, h2, h3, h4, h5, h6 { margin: 0; } h1 { - color: #9c353e; + color: #ec0402; } h2, h3, h4, h5, h6 { - color: #8b6268; + color: #ec0402; } img, h1, h2 { @@ -49,27 +59,34 @@ img { } a { - color: #a4b810; + color: #f40004; + background-color: #40000f; text-decoration: none; } a:hover { - color: #69c884; + color: #40000f; + background-color: #ec0402; text-decoration: none; } +body > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > a:nth-child(1) { + background-color: unset; +} + #blob a { - color: #454545; + color: #cfa5a5; + background-color: unset; } #blob a:hover { - color: #69c884; + color: #ec0402; text-decoration: none; } table thead td { font-weight: lighter; - color: #8b6268; + color: #cfa5a5; } table td { @@ -82,7 +99,8 @@ table#log > tbody > tr:hover > td > a, table#log > tbody > tr:hover > td > a:hover, table#index > tbody > tr:hover > td > a, table#index > tbody > tr:hover > td > a:hover { - color: #110f0d; + color: #ec0402; + background-color: unset; } #content table td { @@ -95,8 +113,8 @@ table#index > tbody > tr:hover > td > a:hover { #index tr:hover td, #log tr:hover td, #files tr:hover td { - background-color: #aabb46; - color: #110f0d; + background-color: #40000f; + color: #ec0402; } #index tr td:nth-child(2), @@ -111,19 +129,19 @@ td.num { } .desc { - color: #9c353e; + color: #ec0402; } hr { border: 0; - border-top: 1px dotted #454545; + border-top: 1px solid #44393c; height: 1px; width: 80%; margin-inline-start: 0; } pre { - font-family: "envy"; + font-family: "UnifontExMono"; font-size: 0.9em; width: 80%; overflow-x: auto; @@ -145,12 +163,14 @@ pre a.h { span.i, pre a.i { - color: #bcc92e; + color: #bdcf15; + background-color: unset; } span.d, pre a.d { color: #ae424b; + background-color: unset; } pre a.h:hover, @@ -164,8 +184,8 @@ pre b { } pre#blob { - background-color: #110f0d; + background-color: #35372e; /*color: #bcc92e;*/ - color: #dab733; + color: #bdcf15; overflow-x: auto; }