From eba62e0925b48bbe1d866726c1c2bf30eef8ce3c Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Sat, 15 Oct 2022 16:56:34 +0100 Subject: [PATCH] update main.css (filter controls for 'Index' pages mostly). I updated the CSS for links (a tags) too. --- static/css/main.css | 59 ++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 53 insertions(+), 6 deletions(-) diff --git a/static/css/main.css b/static/css/main.css index 8206851..1bbf6d3 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -21,21 +21,22 @@ button { } a:link { - /* color: #005585; */ - /* text-decoration: none; */ + color: black; + text-decoration: none; } + a:visited { - /* color: #485270; */ + color: black; } + a:hover { - /* color: #b83800; */ - /* text-decoration: underline; */ + text-decoration: underline; } input[type=file], input[type=text], input[type=password] { - border: 1px solid silver; + border: 1px solid black; border-radius: 8px; margin: 0px; padding: 4px; @@ -677,6 +678,52 @@ hr { text-align: center; } +.fe-index { + max-width: 880px; + width: 100%; + margin: 0px auto; +} + +.fe-index-entry { + margin: 8px 0px; +} + +/* Start of Index Filter */ +#fe-search-filter { + box-sizing: border-box; + width: 100%; + margin-bottom: 15px; + padding: 10px; +} + + +#fe-search-filter-list { + list-style: none; + margin: 0; + padding: 0; +} + +#fe-search-filter-list li { + padding: 0px; +} + + +#fe-search-filter-list li.hide { + display: none; +} +/* End of Index Filter Stuff */ + +.fe-index-entry img { + max-height: 100px; +} + +.fe-hint { + margin: 0px; + padding: 0px; + font-size: 11px; + color: slategrey; +} + .fe-article { display: flex; justify-content: center;