mise en page

This commit is contained in:
gnieark 2015-11-29 11:16:36 +01:00
parent a11dad9c1a
commit 812d270e0d
2 changed files with 3 additions and 4 deletions

View File

@ -107,8 +107,6 @@ if($currentArena == ""){
include ("../src/home.php"); include ("../src/home.php");
break; break;
default: default:
include ("../src/arenas/".$currentArena."/public.php");
//battle history for this arena //battle history for this arena
$hist=get_battles_history($currentArena); $hist=get_battles_history($currentArena);
echo '<aside id="history"><h2>Scores</h2>'; echo '<aside id="history"><h2>Scores</h2>';
@ -121,6 +119,7 @@ if($currentArena == ""){
</ul>'; </ul>';
} }
echo '</aside>'; echo '</aside>';
include ("../src/arenas/".$currentArena."/public.php");
break; break;
} }
?> ?>

View File

@ -55,11 +55,11 @@ section{
width: 90%; width: 90%;
} }
article{ article{
float: left; float: right;
width:70%; width:70%;
} }
aside{ aside{
float:right; float:left;
width: 28%; width: 28%;
} }