In Memoriam: Tai'lahr

OpenUru.org, along with the rest of the Mystonline community, is mourning the loss of Tai'lahr on October 16th, 2019.

Rest in Peace, friend.

Difference between revisions of "MediaWiki:Common.css"

From OpenUru
Jump to navigation Jump to search
Line 70: Line 70:
 
div.eventrowodd div.eventheadodd
 
div.eventrowodd div.eventheadodd
 
{
 
{
   background-color: #99CC00;  
+
   background-color: #99FF99;  
 
   margin-bottom: 5px;
 
   margin-bottom: 5px;
 
   width: auto;  
 
   width: auto;  
Line 91: Line 91:
 
div.eventroweven div.eventheadeven
 
div.eventroweven div.eventheadeven
 
{
 
{
   background-color: #9999FF;  
+
   background-color: #99CCFF;  
 
   margin-bottom: 5px;
 
   margin-bottom: 5px;
 
   width: auto;  
 
   width: auto;  

Revision as of 04:52, 6 April 2011

/* CSS placed here will be applied to all skins */

/* Table formats */
/* Large, left aligned blue text */
.big-blue, .wikitable th.big-blue
{ 
  color:#4682B4; 
  text-align:left; 
  font-size:1.5em; 
  padding:0.5em;
}

/* Normal, centered dark red text */
.med-red, .wikitable th.med-red 
{
  color:#8F1A18; 
  padding:1em; 
}

/* Borderless spacer */
.spacer, .wikitable th.spacer, .wikitable td.spacer
{
  border:0;
  background:#fff;
  padding:5px;
}

/* Allow limiting of which header levels are shown in a TOC;
   <div class="toclimit-3">, for instance, will limit to
   showing ==headings== and ===headings=== but no further
   (as long as there are no =headings= on the page, which
   there shouldn't be according to the MoS).
 */
.toclimit-2 .toclevel-1 ul,
.toclimit-3 .toclevel-2 ul,
.toclimit-4 .toclevel-3 ul,
.toclimit-5 .toclevel-4 ul,
.toclimit-6 .toclevel-5 ul,
.toclimit-7 .toclevel-6 ul {
    display: none;
}

/* Quotation box (blockquote) */
blockquote.bluebox
{
  background-color: #F0F0FF; 
  border: solid 1px #CCCCDD; 
  padding: 5px;
}

/* Highlight box (blockquote) */
blockquote.biegebox
{
  background-color: antiquewhite; 
  border: solid 1px burlywood; 
  padding: 5px;
}

/* Style for odd row Events (for Current Events page) */
/* Container box */
div.eventrowodd
{
  border: solid 1px #00CC00;
  margin: 5px;
  padding: 5px;
  width: auto; 
  color: #000000;
}
/* Event heading */
div.eventrowodd div.eventheadodd
{
  background-color: #99FF99; 
  margin-bottom: 5px;
  width: auto; 
  padding: 5px;
  font-size:1.2em;
  font-weight: 600;
  color: #000000;
}
/* Style for even row Events (for Current Events page) */
/* Container box */
div.eventroweven
{
  border: solid 1px #0099FF;
  margin: 5px;
  padding: 5px;
  width: auto; 
  color: #000000;
}
/* Event heading */
div.eventroweven div.eventheadeven
{
  background-color: #99CCFF; 
  margin-bottom: 5px;
  width: auto; 
  padding: 5px;
  font-size:1.2em;
  font-weight: 600;
  color: #000000;
}