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
(Put TOClimit styling in here to protect it from wiki css updates!)
 
(13 intermediate revisions by the same user not shown)
Line 55: Line 55:
 
   border: solid 1px burlywood;  
 
   border: solid 1px burlywood;  
 
   padding: 5px;
 
   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;
 +
}
 +
 +
/* Styling for Template:Quote */
 +
blockquote.templatequote {
 +
    margin-top: 0;
 +
}
 +
blockquote.templatequote div.templatequotecite {
 +
    line-height: 1em;
 +
    text-align: left;
 +
    padding-left: 2em;
 +
    margin-top: 0;
 +
}
 +
blockquote.templatequote div.templatequotecite cite {
 +
    font-size: 85%;
 +
}
 +
 +
div.user-block {
 +
    padding: 5px;
 +
    border: 1px solid #A9A9A9;
 +
    background-color: #FFEFD5;
 +
}
 +
 +
/* 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;
 +
}
 +
 +
/* Make <tt> the same as <code>, i.e. have the same background colour */
 +
tt
 +
{
 +
background-color: #f9f9f9;
 +
}
 +
 +
/* Makes level 2 headings disappear if they're a link to the page the heading is on */
 +
/* Need this to hide the "double heading" on pages that use Template:Memorial */
 +
h2 .mw-headline .selflink
 +
{
 +
  display:none
 
}
 
}

Latest revision as of 14:54, 19 August 2015

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

/* Styling for Template:Quote */
blockquote.templatequote { 
     margin-top: 0; 
}
blockquote.templatequote div.templatequotecite { 
    line-height: 1em;
    text-align: left;
    padding-left: 2em;
    margin-top: 0;
}
blockquote.templatequote div.templatequotecite cite {
    font-size: 85%;
}

div.user-block {
    padding: 5px;
    border: 1px solid #A9A9A9;
    background-color: #FFEFD5;
}

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

/* Make <tt> the same as <code>, i.e. have the same background colour */
tt 
{
	background-color: #f9f9f9;
}

/* Makes level 2 headings disappear if they're a link to the page the heading is on */
/* Need this to hide the "double heading" on pages that use Template:Memorial */ 
h2 .mw-headline .selflink
{
  display:none
}