descentbb.net mini
Moderators: Krom, Lothar, Richard Cranium, KoolBear
descentbb.net mini
Is there a more compact version of the front page, like this?
PTMC CafeDescent Multiplayer
Ethics and CommentaryDescent Old Skool
Tech ForumD3 Servers and Server OP's
No Holds BarredDescent Single Player
The DBB MarketplaceZappaFan's Level Spotlight
DBB Distributed ComputingD2X-XL
PTMC GalleryDXX
Coders Corner
For the D3 Dev Team
Core DecisionInto Cerberon
Event Horizon360° Efforts
ANNOUNCEMENTSDBB Feedback ForumThe DBB Testing Zone
PTMC CafeDescent Multiplayer
Ethics and CommentaryDescent Old Skool
Tech ForumD3 Servers and Server OP's
No Holds BarredDescent Single Player
The DBB MarketplaceZappaFan's Level Spotlight
DBB Distributed ComputingD2X-XL
PTMC GalleryDXX
Coders Corner
For the D3 Dev Team
Core DecisionInto Cerberon
Event Horizon360° Efforts
ANNOUNCEMENTSDBB Feedback ForumThe DBB Testing Zone
Here's the default style info for the DBB:
Code: Select all
body {
background-color:#000000;
}
font, th, td, p {
font-family:Arial,Helvetica,sans-serif;
}
th.thHead, th.thLeft, th.thRight, th.thTop, th.thCornerL, th.thCornerR, th.thSides {
color:#FFFF99;
font-size:11px;
font-weight:normal;
}
td.cat, td.catHead, td.catBottom {
height:26px;
}
.maintitle, h1, h2 {
color:#33CCFF;
font-family:Arial,\"Trebuchet MS\",Verdana,Helvetica,sans-serif;
font-size:16px;
font-weight:bold;
line-height:120%;
}
.gen {
font-size:16px;
}
.gen2 {
font-size:13px;
}
.genmed {
font-size:11px;
}
.gensmall {
font-size:10px;
}
a.gen, a.genmed, a.gensmall {
color:#33CCFF;
}
.mainmenu {
color:#33CCFF;
font-size:11px;
}
a.mainmenu {
color:#66FFFF;
}
a.mainmenu:visited {
color:#66FFFF;
}
a.mainmenu:hover {
color:#99FFFF;
}
.cattitle {
color:#33CCFF;
font-size:16px;
font-weight:bold;
}
.forumlink {
font-size:16px;
font-weight:bold;
}
a.forumlink {
color:#66FFFF;
}
a.forumlink:visited {
color:#99FFFF;
}
a.forumlink:hover {
color:#99FFFF;
}
.nav {
color:#33CCFF;
font-size:11px;
font-weight:normal;
}
a.nav {
color:#66FFFF;
}
a.nav:visited {
color:#99FFFF;
}
a.nav:hover {
color:#99FFFF;
}
.nav2 {
color:#33CCFF;
font-size:12px;
font-weight:bold;
}
.topictitle {
color:#33CCFF;
font-size:16px;
font-weight:normal;
}
a.topictitle:link {
color:#66FFFF;
}
a.topictitle:visited {
color:#99FFFF;
}
a.topictitle:hover {
color:#99FFFF;
}
.name {
color:#33CCFF;
font-size:16px;
}
.postdetails {
color:#99FF99;
font-size:10px;
}
.posterrank {
color:#33CCFF;
font-size:10px;
}
.bigred {
color:#FF0000;
font-size:32px;
font-weight:bold;
}
.postbody {
color:#33CCFF;
font-size:16px;
}
a.postlink:link {
color:#66FFFF;
}
a.postlink:visited {
color:#99FFFF;
}
a.postlink:hover {
color:#99FFFF;
}
.code {
background-color:#000000;
border:1px solid #808080;
color:#AAAAAA;
font-family:Arial,sans-serif;
font-size:11pt;
}
.quote {
background-color:#000000;
border:1px solid #808080;
color:#AAAAAA;
font-family:Arial,sans-serif;
font-size:11pt;
line-height:125%;
}
.sig {
font-size:11px;
}
.helpline {
background-color:#000000;
border-style:none;
color:#FFFFCC;
}
.copyright {
color:#33CCFF;
font-family:Arial;
font-size:10px;
letter-spacing:-1px;
}
a.copyright {
color:#FFCC00;
}
a.copyright:link {
color:#FFCC00;
}
a.copyright:visited {
color:#FFCC00;
}
a.copyright:hover {
color:#FFFFCC;
}
- Krom
- DBB Database Master
- Posts: 16137
- Joined: Sun Nov 29, 1998 3:01 am
- Location: Camping the energy center. BTW, did you know you can have up to 100 characters in this location box?
- Contact:
A little tip if you haven't figured it out already, you can hide text on a page by setting its size to 0px.
So for instance, if you are using the BBTech theme like I am, you can hide the forum descriptions on the main page by creating a new style in Stylish and putting in just:
You can also use multiple themes together at the same time, some that act just on a single page and others that act on the whole domain or subdomain. For instance I use the style above to hide the forum descriptions, and I use another style over the whole domain to force hyperlinks to different colors than plain text (something that really annoyed me about the BBTech theme).
So for instance, if you are using the BBTech theme like I am, you can hide the forum descriptions on the main page by creating a new style in Stylish and putting in just:
Code: Select all
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url(\"http://www.descentbb.net/index.php\") {
/* General text */
.genmed { font-size : 0px !important; }
}