†††
⠀
- Joined
- Sep 21, 2015
- Messages
- 3,544
Given that the other threads complaining about the new design are bursting with activity, I'm afraid some of the CSS improvement like guys like Tavar or yours truly have devised will be lost in a sea of endless pages and much deserved bitching. So I'm creating this thread to post our findings, suggestions and more to make the new site more palatable. Use the Stylus add-on for desktop browsers.
Here are the modifications I'm using so far (special thanks to all the guys who have come up with neat tricks in this thread). Change the attributes to match your tastes:
Preview of the site with custom colors:
Here are the modifications I'm using so far (special thanks to all the guys who have come up with neat tricks in this thread). Change the attributes to match your tastes:
CSS:
/* font fixes */
.message-body {
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
word-wrap: break-word;
}
html {
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
}
/* old font size */
* {
font-size: 10pt;
}
/* background color */
.message-cell {
background-color: #202225;
}
.bbCodeBlock {
background-color: #333333 !important;
}
/* user block color */
.message-cell.message-cell--user {
background-color: #1c2331 !important;
}
/* sticky threads color */
.structItemContainer-group--sticky {
background-color: #32363f !important;
}
/* transparent avatar fixes when using custom color */
.avatar img:not(.cropImage) {
background: #202225;
}
/* page width */
.p-body-inner {
max-width: 98%;
}
/* transparent bottom bar */
footer.p-footer {
background: #464d5c00 !important;
}
/* improved legibility for alerts */
.fauxBlockLink a, .fauxBlockLink .fauxBlockLink-link {
position: relative;
z-index: 2;
font-weight: bold;
color: #9d9d9d;
}
/* differentiated text for links */
.fauxBlockLink a, .fauxBlockLink .fauxBlockLink-link {
font-weight: bold;
color: #9d9d9d;
}
/* background color for thread list */
.block-body {
list-style: none;
margin: 0;
padding: 0;
background: #202225;
}
/* darker shoutbox */
.siropuChatPage #siropuChatContent {
background: #363b45;
}
#siropuChatContent {
background: #363b45;
}
/* reactions received page fixes */
.block-container {
color: #fff;
}
a {
color: #8a9bb6;
}
/* forum statistics fix */
.pairs {
padding-left: 10px;
padding-right:10px;
padding-top: 1px;
padding-bottom: 1px;
overflow: hidden;
}
/* custom background image/color */
html {
background: #383838 url('https://your-url.com/yourimage.png') repeat;
background-color: #475565;
}
/* smaller codex troll */
.codexTroll {
width: 135px; /* this is original size, adjust to your tastes */
height: auto;
}
/* Nuke right top header stuff */
.topBanner {
display: none;
}
/* Make footer a little less relevant */
.p-footer {
opacity: 40%;
}
/* change color for thread list in latest activity */
.block-container {
background: #202225;
}
/* Bolder text for the header buttons, old dex style */
.topTable tr, .topTable td {
font-weight: bold;
}
/* Nuke scroll buttons */
.u-scrollButtons.is-active {
display: none;
}
/* Borderless ratings bar */
.sv-rating-bar__ratings {
border: 0px solid #b3b3b314;
border-top: 0px solid #8585851a;
}
/* centered usernames/titles */
.message-user .message-userDetails > * {
text-align: center;
}
/* centered avys */
.message-avatar {
text-align: center;
}
/* centered badges */
.message-user > * {
text-align: center;
}
/* softer borders in user/message boxes */
.message-attribution {
border-bottom: 1px dotted #000 !important;
}
.message-cell.message-cell--user {
border-right: 1px dotted #000 !important;
}
/* static (non-scrolling) top bar */
.p-navSticky {
position: static;
}
/* nuke amazon affiliate msg */
.samCodeUnit {
display: none;
}
/* hide threads with no new messages from the watched threads list */
body[data-template="watched_threads_list"] .structItem--thread:not(.is-unread) {
display: none;
}
Preview of the site with custom colors:
Last edited: