From 93244cab30f5f1d2188f15e9631275abb83d76ea Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Wed, 17 Oct 2012 17:27:41 +0200 Subject: [PATCH] Basic page design --- public_html/index.php | 28 +++++++++++ public_html/static/style.css | 96 ++++++++++++++++++++++++++++++++++++ 2 files changed, 124 insertions(+) create mode 100644 public_html/index.php create mode 100644 public_html/static/style.css diff --git a/public_html/index.php b/public_html/index.php new file mode 100644 index 0000000..658b187 --- /dev/null +++ b/public_html/index.php @@ -0,0 +1,28 @@ + + + + AnonNews.org + + + + + + +
+

Header background image by seier+seier used under a Creative Commons Attribution license.

+

All content on this website, including design and written material, is automatically licensed under a Creative Commons Attribution license. You are free to redistribute and/or remix it, but you have to credit the author, or, if the author is unknown ("Anonymous"), place a backlink to the corresponding page on AnonNews and attribute it to "Anonymous".

+
+ + diff --git a/public_html/static/style.css b/public_html/static/style.css new file mode 100644 index 0000000..bdc5bd6 --- /dev/null +++ b/public_html/static/style.css @@ -0,0 +1,96 @@ +body +{ + background-color: #EEEEEE; + font-family: 'Istok Web', sans-serif; + padding: 0px; + margin: 0px; +} + +.clear +{ + clear: both; +} + +.clear-left +{ + clear: left; +} + +.page-header +{ + padding: 8px 12px 0px 12px; + background: url(images/background.jpg); +} + +.page-header h1 +{ + margin: 4px 0px; + font-weight: normal; +} + +.page-header nav a +{ + display: block; + float: left; + margin: 0px 4px; + padding: 4px 8px; + background-color: #CECECE; + color: #3D3D3D; + text-decoration: none; + border: 1px solid gray; + border-bottom: none; +} + +.page-header nav a.section +{ + background-color: #BFBDCA; +} + +.page-header nav a.submit +{ + background-color: #E7D99B; +} + +.page-header nav a:hover +{ + color: black; + background-color: #B5B5B5; +} + +.page-header nav a.section:hover +{ + background-color: #A29CC6; +} + +.page-header nav a.submit:hover +{ + background-color: #E6CF64; +} + +.page-header nav a.active +{ + color: black; + background-color: #EEEEEE; +} + +#button_donate +{ + color: #060051; + border-color: #242058; +} + + + +.license +{ + clear: both; + margin: 8px 24px; + padding: 6px 11px; + font-size: 12px; + background-color: #E5E5E5; +} + +.license p +{ + margin: 3px 0px; +}