From 3b9bb27ab9179334fe3c96ae8dbc249061649aff Mon Sep 17 00:00:00 2001 From: Jonas Kohl Date: Fri, 19 Jul 2024 13:09:00 +0200 Subject: Initial commit --- src/static/.DS_Store | Bin 0 -> 6148 bytes src/static/background.jpg | Bin 0 -> 17585 bytes src/static/blank.gif | Bin 0 -> 37 bytes src/static/hozyrossite.png | Bin 0 -> 49380 bytes src/static/nav.gif | Bin 0 -> 1684 bytes src/static/navh.gif | Bin 0 -> 1683 bytes src/static/style.css | 64 ++++++++++++++++++++++++++++++++++++++ src/static/under-construction.gif | Bin 0 -> 23388 bytes 8 files changed, 64 insertions(+) create mode 100644 src/static/.DS_Store create mode 100644 src/static/background.jpg create mode 100644 src/static/blank.gif create mode 100644 src/static/hozyrossite.png create mode 100644 src/static/nav.gif create mode 100644 src/static/navh.gif create mode 100644 src/static/style.css create mode 100644 src/static/under-construction.gif (limited to 'src/static') diff --git a/src/static/.DS_Store b/src/static/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/src/static/.DS_Store differ diff --git a/src/static/background.jpg b/src/static/background.jpg new file mode 100644 index 0000000..1a16379 Binary files /dev/null and b/src/static/background.jpg differ diff --git a/src/static/blank.gif b/src/static/blank.gif new file mode 100644 index 0000000..b3aa80d Binary files /dev/null and b/src/static/blank.gif differ diff --git a/src/static/hozyrossite.png b/src/static/hozyrossite.png new file mode 100644 index 0000000..5d5fd50 Binary files /dev/null and b/src/static/hozyrossite.png differ diff --git a/src/static/nav.gif b/src/static/nav.gif new file mode 100644 index 0000000..07d1301 Binary files /dev/null and b/src/static/nav.gif differ diff --git a/src/static/navh.gif b/src/static/navh.gif new file mode 100644 index 0000000..b3788af Binary files /dev/null and b/src/static/navh.gif differ 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; +} diff --git a/src/static/under-construction.gif b/src/static/under-construction.gif new file mode 100644 index 0000000..ac939c8 Binary files /dev/null and b/src/static/under-construction.gif differ -- cgit v1.2.3