Here is a style sheet which slightly improves the readability of this board.
You have to install Stylish (firefox) or an equivalent Plugin to use it.
It's only quick'n'dirty for now, but i didn't had the time for more.
Changes:
- Background of Disabled Posts will be changed to green
- Background of content of posts will be white (disabled, can be enabled by remove the /* */ in the "content background change" section
- Post Editor will have same background color as the finished post
- the background image of the admin posts is removed
- Rank Images are hidden
- Improved readability of breadcrumbs
- page header is centered
- the Footer box with the online usernames has reduced opacity
- Badge Textcolor (e.g. the amount of users here) changed to white
- Hyperlinks in Posts are underlined
- Videos are smaller
Code
- /*Disabled Posts*/
- .section .messageDisabled {
- background-color: rgba(0, 255, 0, 0.3);
- }
- /* Mark Hyperlinks with underline */
- .messageText a, .redactor-layer a {
- text-decoration: underline;
- }
- /*videos*/
- .videoContainer {
- height:325px;
- width: 425px;
- max-width: 100%;
- max-height: 100%;
- padding-bottom: 0;
- }
- /*content background change change*/
- /*
- .messageText, .redactor-layer {
- padding: 5px;
- background-color: white !important;
- border-radius: 5px;
- color: black;
- }
- */
- /*Post Editor*/
- .redactor-box {
- background-color: transparent;
- }
- .redactor-toolbar-box {
- background-color:rgba(119, 99, 77, 1);
- }
- .redactor-layer {
- color: transparent;
- color: black;
- }
- /*Admin Background Removal*/
- .messageBody {
- background-image: none !important;
- min-height: inherit !important;
- }
- /*Hide Rank*/
- .userRank {
- display: none;
- }
- /*breadcrumbs*/
- .breadcrumbs {
- text-shadow: 1px 1px 1px black,1px -1px 1px black,-1px 1px 1px black,-1px -1px 1px black;
- }
- /*header padding*/
- .pageHeaderLogo>a {
- padding-left: 0;
- }
- /*Footer*/
- .boxesFooterBoxes {
- background: rgba(0,0,0,.8);
- }
- /*badge e.g. counter in https://forum.runesofmagic.gameforge.com/members-list/*/
- .badge, a.badge {
- color: white;
- }