From 01e982e40cc5679cdb4647aec7c37d3d789eeb4b Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Wed, 31 Oct 2007 10:29:54 +0100 Subject: [PATCH 1/1] LAYOUT: moved more text during the setup into the middle there was still a lot of text that wasn't aligned yet. Still not perfect, but much better than before ;) --- css/standard.css | 16 +++++++++++----- index.php | 31 ++++++++++++++++--------------- 2 files changed, 27 insertions(+), 20 deletions(-) diff --git a/css/standard.css b/css/standard.css index d913af1..bea5189 100644 --- a/css/standard.css +++ b/css/standard.css @@ -27,16 +27,22 @@ font-size: smaller; } -.joingame,.sickness,.poverty,.total { +.joingame,.sickness,.poverty,.total,.message { position: absolute; - width: 10%; + width: 20%; - top:24em; - left:45%; - right:45%; + top:20em; + left:40%; + right:40%; text-align: center; } +.poverty { + top:32em; + z-index:15; + background-color:#fff; +} + .rules { margin-top:20em; } diff --git a/index.php b/index.php index 7d35814..2a688fd 100644 --- a/index.php +++ b/index.php @@ -389,7 +389,7 @@ else if(myisset("me")) */ if( !myisset("in") ) { - echo "

You need to answer the question.

"; + echo "

You need to answer the question.

"; DB_set_hand_status_by_hash($me,'start'); } else @@ -439,12 +439,12 @@ else if(myisset("me")) * unless a user tries to cheat ;) * can also happen if user reloads the page! */ - echo "

You need to answer the questions.

"; + echo "

You need to answer the questions.

"; DB_set_hand_status_by_hash($me,'init'); } else { - echo "Processing what you selected in the last step...
"; + echo "

Processing what you selected in the last step..."; /* check if this sickness needs to be handled first */ $gametype = DB_get_gametype_by_gameid($gameid); @@ -490,7 +490,7 @@ else if(myisset("me")) DB_set_sickness_by_hash($me,"nines"); } - echo " Ok, done with checking, please go to the next step of the setup.
"; + echo " Ok, done with checking, please go to the next step of the setup.

"; /* move on to the next stage*/ DB_set_hand_status_by_hash($me,'poverty'); @@ -515,8 +515,7 @@ else if(myisset("me")) foreach($userids as $user) { $To = DB_get_email_by_userid($user); - $userhash = DB_get_hash_from_gameid_and_userid($gameid,$user); - if($userhash != $me) + $userhash = DB_get_hash_from_gameid_and_userid($gameid,$user); if($userhash != $me) { $message = "Everyone finish the questionary in game ".DB_format_gameid($gameid).", ". "please visit this link now to continue: \n". @@ -535,7 +534,8 @@ else if(myisset("me")) * set that one in the Game table * tell people about it. */ - echo "
Checking if someone else selected solo, nines, wedding or poverty.
"; + echo "
\n"; + echo "

Checking if someone else selected solo, nines, wedding or poverty.

"; /* check if everyone has reached this stage */ $userids = DB_get_all_userid_by_gameid($gameid); @@ -809,11 +809,11 @@ else if(myisset("me")) $result = mysql_query("UPDATE Hand_Card SET hand_id='$myhand' WHERE hand_id='$userhand' AND card_id<'27'" ); /* add hidden button with trump in it to get to the next point */ - echo "
\n"; + echo "
\n"; echo " \n"; echo " \n"; echo " \n"; - echo "
\n"; + echo "
\n"; } else if(myisset("trump","exchange") && $_REQUEST["trump"]>0 && ($who==$mypos || $who==$mypos*10)) { @@ -914,7 +914,7 @@ else if(myisset("me")) else { /* else show all trump, have lowest card pre-selected, have hidden setting for */ - echo "
you need to get rid of a few cards
\n"; + echo "
you need to get rid of a few cards
\n"; set_gametype($gametype); /* this sets the $CARDS variable */ $mycards = DB_get_hand($me); @@ -926,12 +926,12 @@ else if(myisset("me")) display_link_card($card,$PREF["cardset"],$type); echo " \n"; echo " \n"; - echo "\n"; + echo "
\n"; } } else if($who == $mypos || $who == $mypos*10) { - echo "
\n"; + echo "
\n"; foreach($userids as $user) { $name = DB_get_name_by_userid($user); @@ -949,7 +949,7 @@ else if(myisset("me")) } } echo "No,way I take those trump...
\n"; - echo "
\n"; + echo "
\n"; echo "Your cards are:
\n"; $mycards = DB_get_hand($me); @@ -1025,6 +1025,7 @@ else if(myisset("me")) else echo "\n
"; } + echo "
\n"; break; case 'play': case 'gameover': @@ -1056,8 +1057,8 @@ else if(myisset("me")) /* has the game started? No, then just wait here...*/ if($gamestatus == 'pre') { - echo "You finished the setup, but not everyone else finished it... ". - "so you need to wait for the others. Just wait for the an email...
"; + echo "

You finished the setup, but not everyone else finished it... ". + "so you need to wait for the others. Just wait for the an email...

"; break; /* not sure this works... the idea is that you can * only play a card after everyone is ready to play */ } -- 2.25.1