From 720bf78c977eab2ea06fc882b209b8d0122cff2c Mon Sep 17 00:00:00 2001
From: Manuel Herrmann <it@icetruck.de>
Date: Thu, 4 Sep 2014 03:42:04 +0200
Subject: [PATCH] fixed colors :(

---
 registration-system/index.php              |  5 ++++-
 registration-system/view/default_index.php |  2 ++
 registration-system/view/style.css         | 14 ++++++++++++--
 3 files changed, 18 insertions(+), 3 deletions(-)

diff --git a/registration-system/index.php b/registration-system/index.php
index 3923ada..dd04c8d 100644
--- a/registration-system/index.php
+++ b/registration-system/index.php
@@ -248,9 +248,10 @@ function index_show_formular($fid, $bid = NULL, $bachelor = NULL){
 	if (!isset($_GET['noscript']))
 	{
 		echo '</noscript>';
+		echo '<h2>Anmeldeformular</h2>';
 		echo '<div style="margin:0 auto; position:relative; width:900px; height:500px"><div id="storybox"></div>';
 		echo '<div style="position:absolute; left:20px; bottom:20px; background:#f0f; cursor:pointer" onclick="story.next(true)">ZUR&Uuml;CK</div></div>';
-		echo '<div style="text-align:center;font-weight:bold"><a style="float:none;margin:0 auto;" href="'.$_SERVER['REQUEST_URI'].'&noscript">Seite funktioniert nicht?</a></div>';
+		echo '<div style="text-align:center;font-weight:bold"><a style="float:none;margin:0 auto;" href="'.$_SERVER['REQUEST_URI'].'&noscript">Seite funktioniert nicht / zu bunt?</a></div>';
 	}
 }
 
@@ -352,6 +353,8 @@ function index_show_fahrtHeader($fahrt){
 function index_show_signupTable($fid){
     global $index_db, $config_studitypen;
 
+echo '<h2>Angemeldet</h2>';
+
     $data = $index_db->select('bachelor',array("pseudo","antyp","abtyp","anday","abday","comment","studityp"),
         array("AND" => array(
             'fahrt_id' => (int) $fid,
diff --git a/registration-system/view/default_index.php b/registration-system/view/default_index.php
index 05f13a3..0ff934e 100644
--- a/registration-system/view/default_index.php
+++ b/registration-system/view/default_index.php
@@ -12,6 +12,7 @@
     <script type="text/javascript" src="view/js/story.js"></script>
 </head>
 <body>
+<div class="shadowbox">
 <div id="headerbox">
     <div class="headerboxshade"><h1>Fachschaftsfahrt</h1></div>
 	<div class="headerboxshade"><h2>Informatik</h2></div>
@@ -28,5 +29,6 @@
 <div id="footerbox">&copy; 2014 Fachschaftsinitiative Informatik der Humboldt Universität zu Berlin.</div>
 <img src="view/graphics/studityp_5.gif" style="position: fixed;bottom: 5px;left:0px" />
 
+</div>
 </body>
 </html>
diff --git a/registration-system/view/style.css b/registration-system/view/style.css
index 9c55eb1..83d4306 100644
--- a/registration-system/view/style.css
+++ b/registration-system/view/style.css
@@ -12,13 +12,20 @@ Neon Orange: #FF4105
 Neon Purple: #993CF3
 */
 body {
-  /*background-color:#FF00FF;*/
-  background: url(http://rasputin.de/CF/Jugend/p/anibg.gif);
+  background: #cfdee7;
   font-family: sans-serif;
   text-align: justify;
   font-size: 1em;
 }
 
+.shadowbox {
+	-webkit-box-shadow: 7px 7px 20px 0px rgba(50, 50, 50, 0.75);
+	-moz-box-shadow:    7px 7px 20px 0px rgba(50, 50, 50, 0.75);
+	box-shadow:         7px 7px 20px 0px rgba(50, 50, 50, 0.75);
+	width:1000px;
+	margin: 0 auto;
+}
+
 div#headerbox, div#menubox, div#mainbox, div#footerbox {
   margin: 0 auto;
   width: 1000px;
@@ -35,6 +42,9 @@ div#headerbox {
 
 div#menubox {
   border-bottom: 1px solid black;
+  -webkit-box-shadow: inset 0px 6px 6px 0px rgba(150, 150, 150, 0.75);
+	-moz-box-shadow:    inset 0px 6px 6px 0px rgba(150, 150, 150, 0.75);
+	box-shadow:         inset 0px 6px 6px 0px rgba(150, 150, 150, 0.75);
   /*height: 40px;*/
 }
 
-- 
GitLab