static-httpd

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

commit 60d2c94d3c6767a73933419435f34641d077799a
parent 1783f858fdaccd22e87484ed72556a563a3426f1
Author: fjbalon <fbalon@templier.es>
Date:   Sun, 14 Jun 2026 14:20:19 +0200

Actualización de modo oscuro

Diffstat:
Marticle.css | 7+++----
Mstyle.css | 27+++++++++++++++++++++++++++
2 files changed, 30 insertions(+), 4 deletions(-)

diff --git a/article.css b/article.css @@ -143,8 +143,7 @@ math { @media (prefers-color-scheme: dark) { body { - color: antiquewhite; - /* background-color: rgb(28, 28, 28); */ + color: rgb(234, 234, 234); background-color: black; } @@ -157,7 +156,6 @@ math { } .color-invertible { - /* filter: invert(92.94%); */ filter: invert(100%); } @@ -168,11 +166,12 @@ math { code { color: lightcyan; + background-color: rgb(27, 27, 27); } emb { background-color: #343434; - color: antiquewhite; + color: lightcyan; } kbd { diff --git a/style.css b/style.css @@ -89,4 +89,31 @@ hr { margin-bottom: 0.75rem; color: #666; font-size: 0.9rem; +} + +@media (prefers-color-scheme: dark) { + body { + color: rgb(234, 234, 234); + background-color: black; + } + + .blog .article { + border: 1px solid rgb(27, 27, 27);; + background: #101010; + } + + .blog .article:hover { + background-color: #222222; + border-color: #2f2f2f; + } + + /* Opcional: mejorar accesibilidad al navegar con teclado */ + .blog .article:focus { + outline: 2px solid #454545; + } + + .blog .article .info { + color: #a1a1a1; + } + } \ No newline at end of file