1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-26 21:04:34 +00:00

fix of the footer.

--HG--
extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40528
This commit is contained in:
Ezequiel Rivero 2008-12-18 10:36:21 +00:00
parent 1247193980
commit 4856e2d64c
2 changed files with 17 additions and 8 deletions

View File

@ -1,6 +1,9 @@
/* Scrapy.org style sheet *******************************/
/* main elements */
html, body {
height: 100%;
}
body {
margin:0;
@ -10,6 +13,7 @@ body {
font-size:small;
color:#333;
background-color:#FFF;
}
a { color:#6e0909; text-decoration:none; border-bottom:1px solid #d78888;}
a:hover { color:#f99800; border-bottom:1px solid #f7b7b7; }
@ -28,18 +32,21 @@ p { line-height:1.5em; }
/* structure */
#header h1 { background:url('../images/logo.jpg') no-repeat left top ; text-indent: -5000px; width:545px; height:65px }
#mainwrap {
position: relative;
min-height: 100%; }
#container {
float: left;
width: 100%;
max-width: 1074px;
margin: 42px 20px 0;
margin: 42px 20px 66px;
}
#content { clear:left; margin-top:10px; }
#left-column {
float:left;
margin: 25px 274px 0 0;
}
#right-column {
width:274px;
@ -77,7 +84,7 @@ padding:0pt 0px 5px; border-bottom:4px solid #462217;}
.box .post a.more { font-size:0.8em; color:#ffe114; border-bottom:none;}
.box .post a:hover.more { color:#FFF;}
#footer { margin: 45px 0 0; color:#FFF; padding: 15px 20px; background:url('../images/footer-bg.jpg') repeat-x left top #5b2a16; border-top:1px solid #b5331a;}
#footer { margin: 45px 0 0; color:#FFF; padding: 15px 0px 0px 26px; background:url('../images/footer-bg.jpg') repeat-x left top #5b2a16; border-top:1px solid #b5331a; position:absolute; width:98%; bottom:0;}
#footer ul { list-style-type:none; margin:0 0 0 -10px; padding: 0;}
#footer ul li { display: inline; padding:0 10px; border-right:1px solid #b2c0c9; }
#footer ul li.last { border-right:none;}

View File

@ -16,11 +16,13 @@
{% block extrascripts %}{% endblock %}
</head>
<body>
<div id="container">
{% block content %}{% endblock %}
</div>
<div id="mainwrap">
<div id="container">
{% block content %}{% endblock %}
</div>
<div class="clear"></div>
{% include "footer.html" %}
<div class="clear"></div>
{% include "footer.html" %}
</div>
</body>
</html>