Difference between revisions of "User:Richard/monobook.css"

From Inkscape Wiki
Jump to navigation Jump to search
m (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...)
(No difference)

Revision as of 00:33, 14 June 2007

/*
<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>*/