67 lines
982 B
CSS
67 lines
982 B
CSS
/* */
|
|
body {
|
|
background-color: #000;
|
|
}
|
|
/* general helper classes */
|
|
.min {
|
|
margin: 0 auto;
|
|
float: right;
|
|
width: 1000px;
|
|
}
|
|
.padder {
|
|
padding: 1em;
|
|
margin: 0;
|
|
}
|
|
/* header styling */
|
|
#header {
|
|
float: left;
|
|
min-width: 100%;
|
|
height: 200px;
|
|
background-color: #FFF;
|
|
text-align: center;
|
|
color: #DFDFDF;
|
|
font-size: 24pt;
|
|
line-height: 100%;
|
|
}
|
|
/* content styling */
|
|
#container {
|
|
padding: 15px 0;
|
|
clear: both;
|
|
text-align: left;
|
|
}
|
|
/* */
|
|
#menu {
|
|
position: relative;
|
|
width: 30%;
|
|
min-height: 70%;
|
|
float: right;
|
|
background-color: #000;
|
|
color: #DFDFDF;
|
|
text-align: right;
|
|
font-size: 16pt;
|
|
line-height: 150%;
|
|
}
|
|
/* */
|
|
#content {
|
|
position: relative;
|
|
float: left;
|
|
width: 70%;
|
|
min-height: 70%;
|
|
background-color: #FFF;
|
|
color: #DFDFDF;
|
|
font-size: 12pt;
|
|
line-height: 125%;
|
|
}
|
|
#content h1 {
|
|
width: 100%;
|
|
padding: 0.5em;
|
|
border-bottom: 2px solid #555;
|
|
color: #000;
|
|
background-color: #555;
|
|
}
|
|
#content p, ul {
|
|
padding-left: 1em;
|
|
}
|
|
|
|
|