cerca

lean forum software (pmc local branch)
Log | Files | Refs | README | LICENSE

commit 31cbdc01e6051987f3ad5133b96590a7ec11ff55
parent 1e8561e2e2794fb62c9d81659e13715c5b28a35d
Author: cblgh <cblgh@cblgh.org>
Date:   Tue, 18 Oct 2022 16:22:07 +0200

theme css

Diffstat:
Ahtml/assets/theme.css | 31+++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+), 0 deletions(-)

diff --git a/html/assets/theme.css b/html/assets/theme.css @@ -0,0 +1,31 @@ +/* below are the style rules that define the visual theme of the forum + * change these to change the forum's colours */ + +/* normal theme */ +blockquote { border-color: black } +a:not([class]) { color: black; } +a:visited { color: #666; } +tr:hover td { background:#e2cca2; } +body { background: wheat; color: black; } + +header > a { background-image: url('/assets/merveilles.png'); } +header details a:visited { color: black; } + +/* halloween theme */ +header svg { fill: #ff8000; } +#logo { + width: 48px; + height: 48px; + display: block; +} +p { color: #f2f2f2; } +blockquote { border-color: wheat; } +textarea { background: black; color: wheat; } +h1 a:visited, a:not([class]) { color: wheat; } +a:visited { color: gray; } +body { background: #111; color: #ff8000; } + +header details a:visited { color: #ff8000; } + +/* author colors */ +span > b { color: #ff8000; }