44 lines
697 B
CSS
44 lines
697 B
CSS
|
body {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
background: #FFFFFF url(img/img01.jpg) repeat-x;
|
||
|
}
|
||
|
#header {
|
||
|
width: 760px;
|
||
|
height: 180px;
|
||
|
margin: 0 auto;
|
||
|
background: url(img/img02.jpg);
|
||
|
position:relative;
|
||
|
}
|
||
|
#nav {
|
||
|
width: 760px;
|
||
|
height: 50px;
|
||
|
margin: 0 auto;
|
||
|
overflow:hidden;
|
||
|
}
|
||
|
#content {
|
||
|
width: 720px;
|
||
|
margin: 0 auto 20px auto;
|
||
|
padding: 20px;
|
||
|
background: #FFFFFF url(img/img04.jpg) repeat-x left bottom;
|
||
|
overflow:auto;
|
||
|
}
|
||
|
#posts {
|
||
|
float: left;
|
||
|
width: 480px;
|
||
|
}
|
||
|
|
||
|
#links {
|
||
|
float: right;
|
||
|
width: 200px;
|
||
|
padding-left: 20px;
|
||
|
background: url(img/img05.gif) repeat-y;
|
||
|
}
|
||
|
#footer {
|
||
|
height: 100px;
|
||
|
padding: 20px;
|
||
|
background: #2D2D2D url(img/img07.gif) repeat-x;
|
||
|
text-align: center;
|
||
|
color: #999999;
|
||
|
}
|