To make things easier for people, I'm now hosting dA5pook on userstyles.org

To intall it, visit deviantART: black (by thespook) and (if you have Stylish installed) click the 'Load into Stylish' button. If you cannot see that button, you either have the skin installed already, or you do not have Stylish installed.

To skin any pages still in the old v4 style (such as the message center), you'll need to manualy install the following skin: oldblack.css.

...and finaly, because I can't be bothered maintaining two skins (let alone one ;p) I have discontinued updating the invert ('white') version. It will remain available if you know where to find it, but it will no longer be updated.

Over the years (I can't believe I can say that) I've written a bunch of CSS fixes for things on deviantart to suit my personal tastes. They're scattered about the place at the moment, but when I can I'll reorganise them etc.

...and reorganise them I have. See my journal here for the full collection of CSS tweaks and fixes for deviantart.

I've got one for the moods menu (makes the comment area fullsized again and turns the moods menu into an on :hover dropdown), another that changes a bunch of dates to the 'time since' format if they're less than 1 day old, another that makes notes/reply form side-by-side, a quick one that increases the height of the new journal textareas:

@-moz-document url("http://my.deviantart.com/journal/") {
textarea[name="body"]{height:800px!important}
textarea#jheader{height:200px!important}
textarea#jfooter{height:200px!important}
}

...a really quick one that brings back the message centre details ie: (2M, 34C, 12J) -

@-moz-document domain("deviantart.com") {
#rockdock a[title][href*="messages"]:after{content:" ("attr(title)") "}
}

...and finaly one that hides avatars in journal shoutboxes:

@-moz-document domain("deviantart.com") {
.shouts .avatar{display:none}
.shouts dt{padding-left:0!important}
}