Difference between revisions of "MediaWiki:Monobook.css"

From Twinsuniverse
Jump to: navigation, search
m (eew)
m (pity, it didn't work!)
 
(13 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
/* CSS placed here will affect users of the Monobook skin */
 
/* CSS placed here will affect users of the Monobook skin */
  
<!--
 
<pre>
 
#content {
 
    background: #FFFF00; /* a light blue */
 
}
 
 
#content div.thumb {
 
    border-color: #FFFF00;
 
}
 
 
.ns-0 * #content {
 
    background: white;
 
}
 
  
#mytabs li {
+
/* Main content frame */
     background: #FFFF00;
+
#content
 +
{
 +
     border-radius: 0.4em;
 
}
 
}
  
.ns-0 * #mytabs li {
+
/* Upper tabs */
     background: white;
+
#p-cactions ul li, #p-cactions ul li a
 +
{
 +
     border-radius: 0.7em 0.7em 0px 0px;
 
}
 
}
  
#mytabs li a {
+
/* Side-Bar */
     background-color: #FFFF00;
+
div.pBody
 +
{
 +
     border-radius: 0px 7px 7px 0px;
 
}
 
}
  
.ns-0 * #mytabs li a {
+
/* Footer */
     background-color: white;
+
#footer
 +
{
 +
     border-radius: 0.3em;
 
}
 
}
  
#p-cactions li a, #p-cactions li a:hover, #p-cactions li.selected a {
+
/* Thumbnails */
     background-color: #FFFF00;
+
div.thumbinner
 +
{
 +
     border-radius: 0.6em;
 
}
 
}
  
.ns-0 * #p-cactions li a {
+
/* Table of Contents */
     background-color: #fbfbfb;
+
#toc
 +
{
 +
     border-radius: 8px;
 
}
 
}
  
.ns-0 * #p-cactions li.selected a, .ns-0 * #p-cactions li a:hover {
+
/* "Categories" box */
     background-color: white;
+
#catlinks
 +
{
 +
     border-radius: 8px;
 
}
 
}
  
.ns-0 * #content div.thumb {
+
/* Left boxes on main page */
     border-color: white;
+
table[align="left"][cellspacing="6"] td
 +
{
 +
     border-radius: 9px;
 
}
 
}
</pre>
 
-->
 

Latest revision as of 18:23, 24 May 2014

/* CSS placed here will affect users of the Monobook skin */


/* Main content frame */
#content
{
    border-radius: 0.4em;
}

/* Upper tabs */
#p-cactions ul li, #p-cactions ul li a
{  
    border-radius: 0.7em 0.7em 0px 0px;
}

/* Side-Bar */
div.pBody
{
    border-radius: 0px 7px 7px 0px;
}

/* Footer */
#footer
{
    border-radius: 0.3em;
}

/* Thumbnails */
div.thumbinner
{
    border-radius: 0.6em;
}

/* Table of Contents */
#toc
{
    border-radius: 8px;
}

/* "Categories" box */
#catlinks
{
    border-radius: 8px;
}

/* Left boxes on main page */
table[align="left"][cellspacing="6"] td
{
    border-radius: 9px;
}