site

Website's source files.
Log | Files | Refs | Submodules | LICENSE

commit c8a4e958d40cae9b40c2a0df9323a5c872490111
parent 20140bdf4a1091d36dd845e42b6b01cdf2cfc2fb
Author: Ryan Jeffrey <ryan@ryanmj.xyz>
Date:   Sat, 12 Feb 2022 01:18:30 -0800

Fix css for headers and tables

Diffstat:
Mpublic/css/main.css | 1-
Mpublic/css/terminal.css | 36++++++++++++++++++++++++++++++++++++
2 files changed, 36 insertions(+), 1 deletion(-)

diff --git a/public/css/main.css b/public/css/main.css @@ -162,7 +162,6 @@ pre.src-nxml:before { content: 'XML'; } (add-to-list 'org-latex-listings-langs '(conf " ")) in .emacs */ pre.src-conf:before { content: 'Configuration File'; } -table { border-collapse:collapse; } caption.t-above { caption-side: top; } caption.t-bottom { caption-side: bottom; } td, th { vertical-align:top; } diff --git a/public/css/terminal.css b/public/css/terminal.css @@ -47,6 +47,14 @@ h4 { font-size: 0.8em; } +h3 { + margin: 0 auto; + padding: 0; + color: var(--white); + text-shadow: 0 0 4px var(--white); + font-family: monospace; +} + #taskbar { width: 100%; } @@ -192,3 +200,31 @@ body { } +table { + width: 100%; +} + +table, th, td { + border: 0.1em solid var(--gray); + +} + +td { + text-align: left; +} + +tr:first-child td { + vertical-align: center; +} + + +th, td { + margin: 0 auto; + padding: 0; + color: var(--white); + text-shadow: 0 0 4px var(--white); +} + +th { + color: var(--spring_green1); +}