User:Richard/monobook.css

From Inkscape Wiki
Revision as of 00:33, 14 June 2007 by Richard (talk | contribs) (New page: →‎<pre><nowiki>: →‎Change link colours: a { color: #002BB8; } a:visited { color: #002BB8; } a:hover { text-decoration: underline; } →‎Change the message box: .usermessage { bac...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/*
<pre><nowiki>*/
/* Change link colours */
a { color: #002BB8; }
a:visited { color: #002BB8; }
a:hover { text-decoration: underline; }

/* Change the message box */
.usermessage {
   background-color: #F8EABA;
   border: 1px solid #777777;
   color: Black;
   font-weight: normal;
   margin: .5em 0em .5em 0em;
   padding: 4px;
   vertical-align: middle;
}

/* Colour of the N in the recent changes */
.newpage { color : #990000; }

/* Background colour */
body { background: #f5f5f5; }

/* Round corners */
.pBody
{
    padding: 0.1em 0.1em;
    -moz-border-radius-topright: 0.5em;
    -moz-border-radius-bottomright: 0.5em;
}

#p-cactions ul li, #p-cactions ul li a
{  
    -moz-border-radius-topright: 0.5em;
    -moz-border-radius-topleft: 0.5em;
}

#content, .toc
{
    -moz-border-radius-topleft: 0.5em;
    -moz-border-radius-topright: 0.5em;
    -moz-border-radius-bottomleft: 0.5em;
    -moz-border-radius-bottomright: 0.5em;
}

/* No borders */

.portlet .pBody, #column-content, #content, #p-cactions li, #catlinks
{
    border-width: 0px;
}

/*</nowiki></pre>*/