summaryrefslogtreecommitdiff
path: root/src/static/style.css
diff options
context:
space:
mode:
authorJonas Kohl <gitlab@jonaskohl.de>2024-07-19 13:09:00 +0200
committerJonas Kohl <gitlab@jonaskohl.de>2024-07-19 13:09:00 +0200
commit3b9bb27ab9179334fe3c96ae8dbc249061649aff (patch)
treed7c612cbd9f0c3b337e0713c0507a1acae8e90c9 /src/static/style.css
Initial commit
Diffstat (limited to 'src/static/style.css')
-rw-r--r--src/static/style.css64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/static/style.css b/src/static/style.css
new file mode 100644
index 0000000..ba507d6
--- /dev/null
+++ b/src/static/style.css
@@ -0,0 +1,64 @@
+body {
+ background: #05456a url("background.jpg") top center no-repeat;
+ font: 10pt Verdana;
+}
+#wrapper {
+ width: 1024px;
+ margin: 0 auto;
+}
+#logoCell {
+ padding: 8px;
+ text-align: center;
+}
+#mainLayout {
+ border-spacing: 0;
+ width: 100%;
+}
+#navRow {
+ padding: 0;
+ background: url("nav.gif");
+}
+#navCell {
+ border: 1px solid #000;
+ padding: 0;
+}
+#navLayout {
+ border-spacing: 0;
+}
+.navCell {
+ padding: 0;
+ border-left: 1px solid #fff;
+ border-right: 1px solid #000;
+}
+.navCell a {
+ display: block;
+ padding: 4px 32px;
+ text-decoration: none;
+ color: black;
+}
+.navCell a:hover {
+ color: #05456a;
+ background: url("navh.gif");
+}
+#mainCell {
+ border: 1px solid #000;
+ border-top: none;
+ background: white;
+ padding: 16px;
+}
+#footerCell {
+ border: 1px solid black;
+ border-top: none;
+ background: #cfd5da;
+ padding: 16px;
+}
+.constructionBox {
+ margin: 0 auto;
+ border: 1px solid black;
+ background: #fffca2;
+}
+.constructionBoxCell {
+ padding: 12px;
+ text-align: center;
+ line-height: 24px;
+}