335 lines
5.7 KiB
CSS
335 lines
5.7 KiB
CSS
/* Normal, standard links. */
|
|
a:link, a:visited
|
|
{
|
|
color: #FFC246;
|
|
text-decoration: underline;
|
|
}
|
|
a:hover
|
|
{
|
|
color: #FFFFFF;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.gray, .gray:link, .gray:visited
|
|
{
|
|
color: #D2D2D2;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.header, .header:link, .header:visited
|
|
{
|
|
color: #D2D2D2;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
}
|
|
/* Navigation links - for the link tree. */
|
|
.nav, .nav:link, .nav:visited
|
|
{
|
|
font-size: 11px;
|
|
color: #D2D2D2;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
}
|
|
a.nav:hover, a.gray:hover
|
|
{
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.mapProfile {color: black;}
|
|
|
|
a.mapProfile {color: blue;}
|
|
|
|
|
|
/* Tables should show empty cells. */
|
|
table
|
|
{
|
|
empty-cells: show;
|
|
}
|
|
|
|
/* By default (td, body..) use Tahoma in black. */
|
|
body, td
|
|
{
|
|
color: #C5C9CF;
|
|
font-size: small;
|
|
font-family: Tahoma, arial, helvetica, sans-serif;
|
|
}
|
|
|
|
/* The main body of the entire forum. */
|
|
body
|
|
{
|
|
background-color: #434343;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Input boxes - just a bit smaller than normal so they align well. */
|
|
input, textarea, button
|
|
{
|
|
background-color: #6E6E6E;
|
|
border: solid 1px #000000;
|
|
color: #d4d4d4;
|
|
font-family: Verdana, Arial;
|
|
font-size: small;
|
|
font-weight: normal;
|
|
padding: 2px;
|
|
}
|
|
|
|
/* All input elements that are checkboxes or radio buttons. */
|
|
input.check
|
|
{
|
|
}
|
|
|
|
/* Selects are a bit smaller, because it makes them look even better 8). */
|
|
select
|
|
{
|
|
background-color: #6E6E6E;
|
|
border: solid 1px #000000;
|
|
color: #d4d4d4;
|
|
font-family: Verdana, Arial;
|
|
font-size: small;
|
|
font-weight: normal;
|
|
padding: 0px;
|
|
}
|
|
|
|
/* Standard horizontal rule.. ([hr], etc.) */
|
|
hr, .hrcolor
|
|
{
|
|
height: 1px;
|
|
border: 0;
|
|
color: #000000;
|
|
background-color: #000000;
|
|
}
|
|
|
|
/* A quote, perhaps from another post. */
|
|
.quote
|
|
{
|
|
color: #F6F6F6;
|
|
background-color: #5C5C5C;
|
|
border: 1px solid #000000;
|
|
margin: 1px;
|
|
padding: 1px;
|
|
/* font-size: x-small;*/
|
|
}
|
|
|
|
/* A code block - maybe even PHP ;). */
|
|
.code
|
|
{
|
|
color: #000000;
|
|
background-color: #cccccc;
|
|
border: 1px solid #000000;
|
|
padding: 1px;
|
|
font-family: "courier new", helvetica, "times new roman", sans-serif;
|
|
/* font-size: x-small;*/
|
|
width: 99%;
|
|
margin: 1px auto 1px auto;
|
|
white-space: nowrap;
|
|
overflow: auto;
|
|
}
|
|
|
|
/* The "Quote:" and "Code:" header parts... */
|
|
.quoteheader, .codeheader
|
|
{
|
|
color: #c5c9cf;
|
|
text-decoration: none;
|
|
font-style: normal;
|
|
font-weight: bold;
|
|
font-size: x-small;
|
|
}
|
|
|
|
/* Generally, those [?] icons. This makes your cursor a help icon. */
|
|
.help
|
|
{
|
|
cursor: help;
|
|
}
|
|
|
|
/* /me uses this a lot. (emote, try typing /me in a post.) */
|
|
.meaction
|
|
{
|
|
color: red;
|
|
}
|
|
|
|
/* The main post box - this makes it as wide as possible. */
|
|
.editor
|
|
{
|
|
width: 96%;
|
|
}
|
|
|
|
/* Highlighted text - such as search results ;). */
|
|
.highlight
|
|
{
|
|
background-color: yellow;
|
|
font-weight: bold;
|
|
color: black;
|
|
}
|
|
|
|
/* Alternating backgrounds for posts, and several other sections of the forum. */
|
|
.windowbg
|
|
{
|
|
color: #C5C9CF;
|
|
background-color: #4D4D4D;
|
|
}
|
|
.windowbg2
|
|
{
|
|
color: #C5C9CF;
|
|
background-color: #575757;
|
|
}
|
|
|
|
/* All the signatures used in the forum. If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */
|
|
.signature
|
|
{
|
|
overflow: hidden;
|
|
width: 100%;
|
|
padding-bottom: 3px;
|
|
max-height: 70px;
|
|
height:expression(this.offsetHeight>70 ? "70px" : "auto");
|
|
}
|
|
|
|
/* These are used primarily for titles, but also for headers (the row that says what everything in the table is.) */
|
|
.titlebg, tr.titlebg td, .titlebg a:link, .titlebg a:visited
|
|
{
|
|
color: white;
|
|
font-style: normal;
|
|
text-decoration: none;
|
|
background-color: #313131;
|
|
}
|
|
.titlebg a:hover
|
|
{
|
|
color: #dfdfdf;
|
|
}
|
|
|
|
.catbg, .catbg2
|
|
{
|
|
font-weight: bold;
|
|
background-color: #384658;
|
|
color: #ffffff;
|
|
}
|
|
|
|
/* This is used for tables that have a grid/border background color (such as the topic listing.) */
|
|
.bordercolor
|
|
{
|
|
background-color: #313131;
|
|
}
|
|
|
|
/* This is used on tables that should just have a border around them. */
|
|
.tborder
|
|
{
|
|
border: 0px solid #313131;
|
|
background-color: #313131;
|
|
padding: 0px;
|
|
}
|
|
|
|
/* Default font sizes: small (8pt), normal (10pt), and large (14pt). */
|
|
.smalltext
|
|
{
|
|
font-size: 90%;
|
|
}
|
|
.normaltext
|
|
{
|
|
/* font-size: small;*/
|
|
}
|
|
.largetext
|
|
{
|
|
font-size: 110%;
|
|
}
|
|
|
|
/* This is the white header area where the title, menu bars, and header boxes are. */
|
|
#headerarea
|
|
{
|
|
background-color: #434343;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
/* This is the main area of the forum, the part that's gray. */
|
|
/*#bodyarea
|
|
{
|
|
background-color: #3F3F3F;
|
|
}*/
|
|
/* And this is the bottom, where the copyright is, etc. */
|
|
#footerarea
|
|
{
|
|
color: black;
|
|
background-color: #3F3F3F;
|
|
border-top: 1px solid black;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
|
|
/* This is for the special header boxes on the top (user info, key stats, news box.) */
|
|
.headertitles
|
|
{
|
|
background-color: #434343;
|
|
border: 1px solid #434343;
|
|
}
|
|
.headerbodies
|
|
{
|
|
border: 1px solid #000000;
|
|
background-color: #575757;
|
|
background-repeat: repeat-x;
|
|
background-position: bottom;
|
|
}
|
|
.online {
|
|
color: lightgreen;
|
|
font-weight: bold;
|
|
font-family: Tahoma, arial, helvetica, sans-serif;
|
|
font-size: x-small;
|
|
}
|
|
.penalty {
|
|
color: white;
|
|
font-size: small;
|
|
font-weight: bold;
|
|
}
|
|
.ban {
|
|
background-color: red;
|
|
}
|
|
.read-only {
|
|
background-color: orange;
|
|
}
|
|
.warning {
|
|
background-color: green;
|
|
}
|
|
|
|
.b {
|
|
font-weight: bold;
|
|
}
|
|
.i {
|
|
font-style: italic;
|
|
}
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
.topiclink {
|
|
border: 1px solid #313131;
|
|
padding: 5px;
|
|
margin: 5px 0;
|
|
}
|
|
.odd {
|
|
background-color: #575757;
|
|
}
|
|
.newposts {
|
|
left: -40px;
|
|
position: relative;
|
|
margin-right: -27px;
|
|
}
|
|
.topiclink img {
|
|
vertical-align: middle;
|
|
}
|
|
.subtitle {
|
|
color: white;
|
|
font-style: italic;
|
|
}
|
|
|
|
.message-container img {
|
|
max-width: 100%;
|
|
}
|
|
h1 {
|
|
margin-bottom: 0;
|
|
margin-top: 0.2em;
|
|
}
|
|
h2 {
|
|
margin-top: 0;
|
|
color: #D2D2D2;
|
|
}
|
|
.buttons {
|
|
height: 20px;
|
|
text-align: right;
|
|
}
|