Personal tools

Wikicolourboxes

From MohidWiki

Revision as of 11:40, 3 December 2008 by Guillaume (talk | contribs) (Customized CSS template)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Here are some templates of coloured boxes to use inside your wiki. Choose your favorite color.

Syntax

{| class="t_mauve"| This is an example |}
This is an example

Colored tables templates

pink
  • class: t_pink
  • border: gray
  • background: #FFEFF0
blue
  • class: t_blue
  • border: #cedff2
  • background: #f5faff
yellow
  • class: t_yellow
  • border: #ffcc00
  • background: #FFFDDF
mauve
  • class: t_mauve
  • border: #ddcef2
  • background: #faf5ff
green
  • class: t_green
  • border: #cef2e0
  • background: #f5fffa

Customized CSS template

For the table classes listed above be effective, one needs to edit the skin's css main file, in occurence, /skins/monobook/main.css. Here's the inserted code:

.t_pink {
   border: 1px solid gray;
   background: #FFEFF0;
}

.t_yellow {
   border: 1px solid #ffcc00;
   background: #FFFDDF;
}

.t_green {
   border: 1px solid #cef2e0;
   background: #f5fffa;
}

.t_blue {
   border: 1px solid #cedff2;
   background: #f5faff;
} 

.t_mauve {
   border: 1px solid #ddcef2;
   background: #faf5ff;
}

External References