From dd577be872ed67e3b276a065aefd16548366719c Mon Sep 17 00:00:00 2001 From: Martin Preuss Date: Tue, 7 Oct 2025 00:27:15 +0200 Subject: [PATCH] added stylesheet. --- apps/aqhome-cgi/modules/static/style.css | 63 ++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 apps/aqhome-cgi/modules/static/style.css diff --git a/apps/aqhome-cgi/modules/static/style.css b/apps/aqhome-cgi/modules/static/style.css new file mode 100644 index 0000000..18a4b39 --- /dev/null +++ b/apps/aqhome-cgi/modules/static/style.css @@ -0,0 +1,63 @@ +body { + background-color: whitesmoke; +} + +table.datatable { + border: thin solid; + border-collapse: collapse; +} + + +table.datatable th, td { + border: thin solid; + border-collapse: collapse; + padding: 5px; +} + + +table.datatable tbody tr:nth-child(odd) { + background-color: #ffffff; +} + + + +table.formtable { + border: thin solid; + border-collapse: collapse; +} + + +table.formtable th, td { + border: thin solid; + border-collapse: collapse; + padding: 5px; +} + + + +ul.mainmenu { + list-style-type: none; + margin: 0; + padding: 0; + overflow: hidden; + background-color: #333333; +} + + +ul.mainmenu li { + float: left; +} + +ul.mainmenu li a { + display: block; + color: white; + text-align: center; + padding: 14px 16px; + text-decoration: none; +} + +ul.mainmenu li a:hover { + background-color: #111111; +} + +