From 1b2b7c3eb939724696894f31ff27db97b0cac84c Mon Sep 17 00:00:00 2001 From: Andreas Widen Date: Sat, 25 Nov 2023 17:21:37 +0100 Subject: Initial commit. Signed-off-by: Andreas Widen --- static/base/css/elements.css | 100 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 static/base/css/elements.css (limited to 'static/base/css/elements.css') diff --git a/static/base/css/elements.css b/static/base/css/elements.css new file mode 100644 index 0000000..d6cdcef --- /dev/null +++ b/static/base/css/elements.css @@ -0,0 +1,100 @@ +/* Harmonic Flow web site */ +/* Public domain 2017. All rights waived */ + +a:link, a:visited { + border-color: #F4BB15; + border-style: none none solid none; + border-width: thin; + color: #1A1A1A; + text-decoration: none; +} + +a:active, a:focus, a:hover { + border-color: #F49B15; + border-style: none none dashed none; + color: black; +} + +a img { + border-style: none; +} + +abbr { + cursor: help; +} + +blockquote { + color: #565656; + font-style: italic; +} + +body { + font-family: sans-serif; + font-size: 16px; + margin: 0px; +} + +code { + color: maroon; + font-size: 0.8em; +} + +code, pre { + font-family: monospace; +} + +html { + background-color: #333; +} + +main { + background-color: white; +} + +pre { + /*background-color: #F2EFE4;*/ + background-color: #f6f6f6; + border-style: solid; + border-color: #D4CBB6; + border-radius: .3em; + border-width: thin; + overflow: auto; + padding: 2em; +} + +pre, +pre code { + color: inherit; + font-size: 0.9em; +} + +table { + border-collapse: collapse; + width: 100%; +} + +table, td, th { + border-color: gray; + border-style: solid; + border-width: thin; +} + +td, th { + padding: 5px 10px; +} + +td { + font-size: 0.9em; +} + +th { + background-color: #F5F5F5; +} + +video { + border-color: black; + border-style: solid; + border-width: thin; + box-shadow: 0 0 4px black; + max-width: 100%; +} -- cgit v1.2.3-54-g00ecf