design: updated footer and css.
This commit is contained in:
parent
ae6bb5be78
commit
d128dd950a
2 changed files with 21 additions and 59 deletions
|
|
@ -35,7 +35,14 @@
|
|||
<?=$this->layout()->content ?>
|
||||
|
||||
<div id="footer">
|
||||
<a href="http://<?=$this->app['url'] ?>"><?=$this->app['name'] ?></a> v<?=$this->app['version'] ?> © 2010
|
||||
<span class="float-left">
|
||||
<a href="<?=$this->baseUrl() ?>/"><?=$this->app['name'] ?></a> v<?=$this->app['version'] ?> © 2010
|
||||
</span>
|
||||
|
||||
<span class="float-right">
|
||||
<a href="#">Cookies</a> -
|
||||
<a href="#">Behind the site</a>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
|||
|
|
@ -68,6 +68,10 @@ textarea {
|
|||
overflow: auto;
|
||||
}
|
||||
|
||||
.float-left { float: left }
|
||||
.float-right { float: right }
|
||||
.float-clear { clear: both }
|
||||
|
||||
div#wrapper {
|
||||
padding: 0 25px;
|
||||
margin: 0 auto 75px;
|
||||
|
|
@ -96,14 +100,14 @@ div#header span#logo {
|
|||
color: white;
|
||||
height: 22px;
|
||||
padding: 8px 12px 0;
|
||||
-moz-border-radius: 8px;
|
||||
-moz-border-radius: 8px;
|
||||
-webkit-border-radius: 8px;
|
||||
-khtml-border-radius: 8px;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
#nav.wsub {
|
||||
-webkit-border-bottom-right-radius: 0;
|
||||
-webkit-border-bottom-right-radius: 0;
|
||||
-webkit-border-bottom-left-radius: 0;
|
||||
-moz-border-radius-bottomright: 0;
|
||||
-moz-border-radius-bottomleft: 0;
|
||||
|
|
@ -115,9 +119,9 @@ ul.subnav {
|
|||
background: url('../img/submenu.png') repeat-x;
|
||||
height: 20px;
|
||||
padding: 5px 12px 0;
|
||||
border-style: solid;
|
||||
border-color: #ccc;
|
||||
border-width: 0 1px 1px 1px;
|
||||
border-style: solid;
|
||||
border-color: #ccc;
|
||||
border-width: 0 1px 1px 1px;
|
||||
-webkit-border-bottom-right-radius: 8px;
|
||||
-webkit-border-bottom-left-radius: 8px;
|
||||
-moz-border-radius-bottomright: 8px;
|
||||
|
|
@ -131,10 +135,10 @@ ul.subnav {
|
|||
font-weight: bold;
|
||||
}
|
||||
ul.subnav, ul.subnav a {
|
||||
color: #444;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
#nav ul { float: left; }
|
||||
#nav ul { float: left }
|
||||
|
||||
#nav ul li,
|
||||
ul.subnav li {
|
||||
|
|
@ -232,16 +236,6 @@ div#agrement {
|
|||
border: 1px solid #f1f1f1;
|
||||
}
|
||||
|
||||
/* Custom List dots */
|
||||
ul.custom {
|
||||
padding: 0 0 0 20px;
|
||||
list-style-image: url('../img/ulli.png');
|
||||
}
|
||||
|
||||
ul.custom li {
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
|
||||
#footer {
|
||||
|
|
@ -252,44 +246,5 @@ ul.custom li {
|
|||
margin: 25px auto auto;
|
||||
}
|
||||
|
||||
#footer, #footer a { color: #999; }
|
||||
|
||||
#footer #quick-nav {
|
||||
float: right;
|
||||
}
|
||||
|
||||
#footer #info {
|
||||
float: left;
|
||||
}
|
||||
|
||||
|
||||
/* Blog stuff */
|
||||
.blogpost {
|
||||
padding: 0 0 30px 0;
|
||||
margin: 30px 0 20px 0;
|
||||
}
|
||||
|
||||
.blogpost h3 {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-size: 1.8em;
|
||||
}
|
||||
|
||||
.blogpost .publish {
|
||||
color: grey;
|
||||
}
|
||||
|
||||
.blogpost .content {
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
|
||||
.full-width {
|
||||
width: 100%;
|
||||
}
|
||||
.half-width {
|
||||
width: 50%;
|
||||
}
|
||||
.center {
|
||||
margin: 0 auto 0 auto;
|
||||
}
|
||||
#footer, #footer a { color: #999 }
|
||||
#footer a:hover { color: #333 }
|
||||
|
|
|
|||
Reference in a new issue