Turbine web guys, now, look what you did!
You enabled these completely useless editor features that allow large scale modification of fonts and what-have-you which helps people create these abhorrently colored and huge text walls.
Thanks to you, I felt compelled to invest further time into my Stylish theme. It will now ignore most of the nonsense the posters above came up with. Enjoy, as long as you can.
To those that posted these: think before you post!
Code:
/**
* Stylish theme for the LotRO forums 2013
* CopyLeft (C) <SNy@bmx-chemnitz.de>
*
* Made necessary due to LotRO forum revamp 2013,
* AKA "lets make this light-grey on dark-grey".
*
* Feel free to use and modify.
*/
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document
url-prefix("https://lotro.com/forums/"),
url-prefix("https://www.lotro.com/forums/")
{
/* allow for some page margin */
body {
margin: 0px 10% !important;
}
/* main posting area, darker bg, yellowish text, 13px */
.postbit .postbody {
background-color: #060606 !important;
color: #DDCC99 !important;
font-size: 13px !important;
}
/* ignore changes to the font other users feel the need to harass us with
thanks, Turbine, for that completely useless editor feature (not!)
*/
.postbit .postbody font, .postbit .postbody span {
color: #DDCC99 !important;
font-size: 13px !important;
font-style: normal !important;
/* list of families is the forum's default as of 2013-08-02 */
font-family: Verdana,Arial,Tahoma,Calibri,Geneva,sans-serif !important;
}
/* font size for quoted posts, smaller and italic font */
.postbit .postrow .bbcode_quote {
color: #DDCC99 !important;
font-size: 12px !important;
font-style: italic !important;
/* list of families is the forum's default as of 2013-08-02 */
font-family: Verdana,Arial,Tahoma,Calibri,Geneva,sans-serif !important;
}
/* signature block: darker separator line, smaller font and no bottom padding */
.postbit .postbody .signature {
font-size: 12px !important;
padding: 10px 10px 0px 10px !important;
border-top-color: #353535 !important;
}
/* force the main constraints for the signatures as well */
.postbit .postbody .signature font, .postbit .postbody .signature span {
color: #DDCC99 !important;
font-size: 12px !important;
font-style: normal !important;
/* list of families is the forum's default as of 2013-08-02 */
font-family: Verdana,Arial,Tahoma,Calibri,Geneva,sans-serif !important;
}
/* no bottom padding below the message block (original has 3em) */
.postbit .postrow {
padding: 5px 10px 10px !important;
}
/* a tad more padding for the post content itself */
.postbit .postbody .content {
padding: 15px 20px 0px 20px !important;
}
/* smaller avatar */
.postuseravatarlink img {
width: 32px !important;
height: 32px !important;
}
/* do NOT center the username etc. */
.username_container, .username_container .usertitle {
text-align: left !important;
padding: 0px 0px !important;
}
/* smaller username */
.username_container .username strong {
font-size: 13px !important;
font-style: normal !important;
}
/* smaller username */
.username_container .usertitle, .username_container .usertitle font {
font-size: 11px !important;
font-style: normal !important;
}
}
SNy