I created a "user stylesheet" to fix two things that bother me about this site: 1) the huge margins and 2) the way links in posts (and blogs) can't be discerned from ordinary text. To use it:
This is just ordinary CSS. It should work in other browsers. (The have different ways to specify a user stylesheet.).
- Install the Stylish add-on. It's available for Chrome or Firefox.
- Visit Rollitup in your browser, then click the Stylish icon
which should appear in your toolbar after installing Stylish.
- Choose the option to "Write style for www.rollitup.org /this URL"
- Paste the code below.
- In the left pane give it a name "Rollitup" and click Save
Code:
div.pageWidth {max-width: 100% !important;}
/* Make links stand out in postings, blog lists and blog entries */
div.messageContent blockquote a:link,
li.blogEntry blockquote a:link,
div.blogEntry blockquote a:link {color:#0000EE !important;
text-decoration:underline !important;
box-shadow: none !important;}
div.messageContent blockquote a:visited,
li.blogEntry blockquote a:visited,
div.blogEntry blockquote a:visited {color:#551A8B !important;
text-decoration:underline !important;
text-shadow: none !important;}
div.messageContent blockquote a:hover,
div.redactor_box a:hover,
li.blogEntry blockquote a:hover,
div.blogEntry blockquote a:hover {color:#AA0000 !important;
text-decoration:none !important;
text-shadow: 1px 1px 4px #CCC !important;}
div.messageContent blockquote a:focus,
div.redactor_box a:focus,
li.blogEntry blockquote a:focus,
div.blogEntry blockquote a:focus {color:#AA0000 !important;
text-decoration:none !important;
outline: #333 dotted thin !important;}
div.messageContent blockquote a:active,
div.redactor_box a:active,
li.blogEntry blockquote a:active,
div.blogEntry blockquote a:active {color:#EE0000 !important;
text-decoration:none !important;
text-shadow: none !important;}
/* Make links stand out in the editor with a yellow background. */
/* NOTE: This works in Chrome 42, not FireFox 37 */
[contenteditable="true"] a:link
{background-color:#FFFFAA !important;}
This is just ordinary CSS. It should work in other browsers. (The have different ways to specify a user stylesheet.).