You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
925 B
52 lines
925 B
/*
|
|
Layout ID Selectors
|
|
*/
|
|
|
|
#layout {
|
|
position: relative;
|
|
margin: 0em auto;
|
|
padding: 0.25em;
|
|
background-color: #fff;
|
|
text-align: left; /* IE5 <div> centering hack part 2 */
|
|
width: 47.5em; /* erroneous value to satisfy IE5/Win */
|
|
voice-family: "\"}\""; /* Tantek's boxmodel hack see more at */
|
|
voice-family: inherit; /* http://www.tantek.com/ */
|
|
width: 47em; /* correct for compliant browsers wo/css2 */
|
|
}
|
|
body>#layout {
|
|
width: 47em; /* correct for compliant browsers w/css2 */
|
|
}
|
|
|
|
#siteheader {
|
|
margin: 0em;
|
|
padding: 0em;
|
|
}
|
|
|
|
#panel {
|
|
float: left;
|
|
margin: 0.25em 0em;
|
|
padding: 0em;
|
|
width: 10.1875em;
|
|
}
|
|
|
|
#content {
|
|
float: right;
|
|
margin: 0.25em 0em;
|
|
padding: 0em;
|
|
width: 36.75em;
|
|
}
|
|
|
|
#footer {
|
|
clear: both;
|
|
margin: 0.5em 0em;
|
|
padding: 0em;
|
|
}
|
|
|
|
#footer p {
|
|
font-size: 0.6875em;
|
|
font-style: italic;
|
|
text-align: center;
|
|
margin: 0em 0em;
|
|
padding: 0.125em 0em;
|
|
}
|
|
|