From e7a515f47cc37ff9bcaec1afa1d93daf804815ba Mon Sep 17 00:00:00 2001 From: Andreas Bielawski Date: Tue, 24 Feb 2015 17:45:22 +0100 Subject: [PATCH] - made site html5 valid - realigned linklist and navbar - removed some CSS classes, we use selectors now - code cleanup --- google.php | 4 +- index.html | 143 ++++++++++++++++++----------------------------- styles.css | 161 +++++++++++++++++++++++++++++------------------------ 3 files changed, 145 insertions(+), 163 deletions(-) diff --git a/google.php b/google.php index 2e957c4..d255707 100644 --- a/google.php +++ b/google.php @@ -1,3 +1,3 @@ \ No newline at end of file +header('Location: https://www.google.com/search?q='.$_POST[suchen]); +?> diff --git a/index.html b/index.html index 73b1244..59f889d 100644 --- a/index.html +++ b/index.html @@ -1,107 +1,72 @@ - - + + - + Aka's Startseite - - + +
-
+ -
-
-
- -
- - -
- -
-

- 2DS Homebrew -


-

- 3DS Homebrew -


-

- Aka's Blog -


-

- Aka's Projektseite -


-

- Aka's Startseite -


-

- iAppNews -


-

- Naira's Tales -


-

- PonyPaste -


-

- PonyWave -


-

- PonyWave Cydia Repo -


-

- PonyWave Forum (Offline) -


-

- PonyWave Link Shortener -


-

- PonyWave Mail -


-

- PonyWave Streams -


-

- PonyWave Z0R Downloader -


-

- Riko -


-

- Yagyuu -


-

- -


-
- - diff --git a/styles.css b/styles.css index 3dcdcac..9b8a7db 100644 --- a/styles.css +++ b/styles.css @@ -1,97 +1,114 @@ -* -{ -border: 0; -margin: 0; +* { + border: 0; + margin: 0; } -body{ - font: 12px Arial, Helvetica, sans-serif; - color: #353535; - background: url(images/bg.jpg) top center repeat-x #000; - line-height: 18px; +body { + font: 12px Arial, Helvetica, sans-serif; + color: #353535; + background: url(images/bg.jpg) top center repeat-x #000; + line-height: 18px; } +#header { + padding-bottom: 40px; +} + +#buttons{ + text-align:center; + height: 53px; + margin-left: 0px; + padding: 0px 0px 0px 85px; + background: url(images/buttons.png) top repeat-x; +} + +#buttons > a { + font-family: Arial, Helvetica, sans-serif; + float:left; + padding-right:70px; + padding-top: 15px; + font-size: 18px; + display: block; + float: left; + text-decoration: none; + color: #fff; + text-align: center; +} + +#buttons > a:hover { + color:#B95C55; + text-decoration:underline; +} #main { - width: 1061px; - margin: 0 auto; -} - -#buttons{ - text-align:center; - height: 53px; - margin-left: 0px; - padding: 0px 0px 0px 85px; - background: url(images/buttons.png) top repeat-x; + width: 1061px; + margin: 0 auto; + padding-top: 15px; } -#buttons a { - font-family: Arial, Helvetica, sans-serif; - font-size: 18px; - display: block; - float: left; - text-decoration: none; - color: #fff; - text-align: center; - padding-top: 15px; +.linklist { + font-size: 24px; + text-align: center; + display: block; + float:left; } -#buttons .but:hover { - color:#B95C55; - text-decoration:underline; - } -.but_razd { - width: 80px; - height: 30px; - float:left;} - -h3 { - text-align: left; - font-size: 24px; - color: #000000; - font-weight: normal; - padding-bottom: 10px; +.linklist > p { + padding-bottom: 20px; + display: block; } +/* RSS widget */ +#rss { + float: right; +} + +#content { + margin: 0 auto; +} + + /*footer*/ #footer{ - clear: both; - height: 84px; - font-size: 11px; - color: #fff; - text-align: center; - padding: 0px 10px 0px 0px; - - text-align: center; + clear: both; + height: 84px; + font-size: 11px; + color: #fff; + text-align: center; + padding: 0px 10px 0px 0px; + + text-align: center; } -#footer a{ - color: #fff; - font-size: 11px; - text-decoration: none; +#footer > a{ + color: #fff; + font-size: 11px; + text-decoration: none; } -#footer a:hover{ - color: #fff; - font-size: 11px; - text-decoration: underline; +#footer > a:hover{ + color: #fff; + font-size: 11px; + text-decoration: underline; } #footer_box1{ - float: left; - width: 400px; - padding: 25px 0 0 24px; - text-align: left; + float: left; + width: 400px; + padding: 25px 0 0 24px; + text-align: left; } + #footer_box2{ - float: right; - width: 400px; - padding: 25px 0 0 16px; - text-align: left; + float: right; + width: 400px; + padding: 25px 0 0 16px; + text-align: left; +} + +#footer_box2 > a{ + float: right; + display: inline; + margin-left: 25px; } -.footer_img{ - float: right; - display: inline; - margin-left: 25px; -} \ No newline at end of file