Interface

This commit is contained in:
Michael RICOIS 2011-10-25 15:51:43 +00:00
parent b0c69d802e
commit d0bacf1c12
3 changed files with 31 additions and 1 deletions

View File

@ -1,3 +1,4 @@
<div id="tabs">
<ul>
<li><a href="#tabs-1">Critères Entreprise</a></li>
@ -12,6 +13,11 @@
</div>
</div>
<div id="result">
TEST
</div>
<script>
$(function() {
$( "#tabs" ).tabs({

View File

@ -12,7 +12,7 @@
<div id="header">
<?php echo $this->render('header.phtml') ?>
</div>
<div id="content" style="clear:both;">
<div id="content" class="clearfix">
<?php echo $this->layout()->content; ?>
</div>
<div id="footer">

View File

@ -19,6 +19,7 @@ ul, ul li {
#content {
margin:10px 5px;
border:1px solid #000000;
}
#content h1 {font-size:16px; text-decoration:underline;}
@ -57,3 +58,26 @@ h3 {
font-size: 0.8em;
}
#tabs {
float:left;
margin: 2px;
}
#result {
float:left;
width:250px;
margin:2px;
padding:2px;
border:1px solid #000000;
}
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
zoom:1;
}