diff options
Diffstat (limited to 'files')
-rw-r--r-- | files/www/ffj.css | 44 | ||||
-rw-r--r-- | files/www/splash.html | 16 |
2 files changed, 52 insertions, 8 deletions
diff --git a/files/www/ffj.css b/files/www/ffj.css index 8d1c8b6..7f6cf42 100644 --- a/files/www/ffj.css +++ b/files/www/ffj.css @@ -1 +1,43 @@ - +div#body { +width: 100%; +text-align: center; +} +div#maincontent{ +margin-left: auto; + margin-right: auto; +width: 600px; +font-family: Arial, Verdana, sans-serif; +font-size: 12pt; +text-align: left; +} +div#maincontent a, a:link, a:visited { +color: #464646; +text-decoration: none; +} + +div#buttons{ +width: 100%; +text-align: center; +} +a.button { +border: 1px solid black; +background-color: #E5E5E5; +padding: 5px; +color: black; +font-weight: bold; +border-radius: 5px; +-moz-border-radius: 5px; +-webkit-border-radius: 5px; +} +a.button:hover { +border: 1px solid black; +background-color: grey; +} +div#logo { +height: 125px; +font-size: 24px; +} +img.logo { +float: left; +padding: 5px; +} diff --git a/files/www/splash.html b/files/www/splash.html index 76cd54e..d9036e9 100644 --- a/files/www/splash.html +++ b/files/www/splash.html @@ -9,16 +9,17 @@ <head> <title>Freifunk Jena</title> - <link rel="stylesheet" type="text/css" href="/ffj.css" /> + <link rel="stylesheet" type="text/css" href="./ffj.css" /> </head> <body> + <div id="body"> <div id="maincontent"> - -<img src="/ff-jena_signet.png" /> - +<div id="logo"> +<img src="./ff-jena_signet.png" class="logo"/><br /><strong>Freifunk Jena</strong><br />Das freie Bürgernetz für Jena +</div> <h2><a id="content" name="content">Willkommen!</a></h2> <p> @@ -53,10 +54,11 @@ unser Netz verwenden. Dann wirst du erneut aufgefordet, diese Bedingungen zu akz </p> +<div id="buttons"> +<a href="/cgi-bin/splash_click?accept" class="button">Aktzeptieren</a> <a href="http://www.freifunk-jena.de/Decline" class="button">Ablehnen</a> +</div> -<a href="/cgi-bin/splash_click?accept">Aktzeptieren</a> <a href="#">Ablehnen</a> - - +</div> </div> </body> </html> |