98 lines
1.5 KiB
CSS
98 lines
1.5 KiB
CSS
/* BEGIN BASIC FORUM STYLES */
|
|
body {
|
|
background-color: #0F0F0F;
|
|
text-align: center; /* make sure IE centers the page too */
|
|
font-family: sans-serif;
|
|
color: #4B0082;
|
|
}
|
|
|
|
#wrapper {
|
|
left:20%;
|
|
right:20%;
|
|
width:75%;
|
|
margin: 0 auto; /* center the page */
|
|
}
|
|
|
|
#header {
|
|
text-align: left;
|
|
padding-left: 8%;
|
|
}
|
|
|
|
#content {
|
|
border: 5px dashed pink;
|
|
border-top: none;
|
|
float: left;
|
|
padding: 20px 30px;
|
|
text-align: left;
|
|
width: 95%; /* fill up the entire div */
|
|
margin-top: 5px;
|
|
}
|
|
|
|
#placeholder {
|
|
color:pink;
|
|
text-align: center;
|
|
font-size: 90pt;
|
|
}
|
|
|
|
img {
|
|
height:auto;
|
|
width:auto;
|
|
max-width:800px;
|
|
max-height:600px;
|
|
}
|
|
|
|
p.comment{
|
|
}
|
|
|
|
#footer {
|
|
clear: both;
|
|
}
|
|
|
|
/* Begin font styles */
|
|
h1 {
|
|
font-size: 50pt;
|
|
margin-bottom: -25px;
|
|
}
|
|
|
|
#footer {
|
|
color: #FAFAFA;
|
|
}
|
|
|
|
h3 {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
/* Menu styles */
|
|
|
|
#menu {
|
|
margin-top: 5%;
|
|
float: left;
|
|
border: 5px dashed pink;
|
|
border-bottom: none; /* avoid a double border */
|
|
clear: both; /* clear:both makes sure the content div doesn't float next to this one but stays under it */
|
|
width:95%;
|
|
height:50px;
|
|
padding: 0 30px;
|
|
text-align: left;
|
|
font-size: 90%;
|
|
}
|
|
|
|
#menu a:hover {
|
|
background-color: #009FC1;
|
|
}
|
|
|
|
.item {
|
|
background-color: #2E2E2E;
|
|
border: 3px dashed pink;
|
|
color: #FAFAFA;
|
|
padding: 10px;
|
|
text-decoration: none;
|
|
margin-right: 10px;;
|
|
}
|
|
|
|
#footer {
|
|
font-size: 65%;
|
|
padding: 3px 0 0 0;
|
|
}
|