Page 1 of 1

descentbb.net mini

Posted: Tue Aug 25, 2009 6:46 pm
by Isaac
Is there a more compact version of the front page, like this?


ImagePTMC CafeImageImageImageImageImageImageImageImageImageImageImageImageImageImageImageDescent Multiplayer
ImageEthics and CommentaryImageImageImageImageImageDescent Old Skool
ImageTech ForumImageImageImageImageImageImageImageImageImageImageImageImageImageImageD3 Servers and Server OP's
ImageNo Holds BarredImageImageImageImageImageImageImageImageImageImageDescent Single Player
ImageThe DBB MarketplaceImageImageImageImageImageImageImageZappaFan's Level Spotlight
ImageDBB Distributed ComputingImageImageD2X-XL
ImagePTMC GalleryImageImageImageImageImageImageImageImageImageImageImageImageImageDXX
ImageCoders Corner
ImageFor the D3 Dev Team
ImageCore DecisionImageInto Cerberon
ImageEvent HorizonImage360° Efforts
ImageANNOUNCEMENTSImageDBB Feedback ForumImageThe DBB Testing Zone
Image

Posted: Tue Aug 25, 2009 10:42 pm
by Krom
No, but you could make it that way yourself with some tweaking in Stylish.

Posted: Wed Aug 26, 2009 11:39 am
by Duper
ooOooooo nice App.

Posted: Wed Aug 26, 2009 11:46 am
by Isaac
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;
}

Posted: Wed Aug 26, 2009 12:57 pm
by Duper
Out of curiosity, why'd you post that Isaac?

Posted: Wed Aug 26, 2009 1:18 pm
by Isaac
Class names and current settings.

Posted: Wed Aug 26, 2009 2:21 pm
by Duper
no no.. not WHAT.... WHY

Why post a bunch of code? anyone that knows anything that can help you can get that easily. Heck I could if I thought it would help.

Krom gave you a great answer.

Posted: Wed Aug 26, 2009 2:24 pm
by Isaac
Oh yeah well it's for userstyle. You need the class names.

Posted: Wed Aug 26, 2009 2:35 pm
by Duper
oooh ok.

Posted: Wed Aug 26, 2009 3:10 pm
by Isaac
I'll post my step up once I have time to actually mess with userstyle.

Posted: Thu Aug 27, 2009 12:01 pm
by Krom
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:

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; }

}
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).