MediaWiki:Common.css

From The Official Visionaire Studio: Adventure Game Engine Wiki
Revision as of 21:35, 30 March 2013 by AFRLme (talk) (Created page with "CSS placed here will be applied to all skins: let's create the various font styles: .bold { font-weight: bold; } .italic { font-style: italic; } .underline { tex...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
/* CSS placed here will be applied to all skins */

/* let's create the various font styles */

.bold {
font-weight: bold;
}

.italic {
font-style: italic;
}

.underline {
text-decoration: underline;
}

.strike {
text-decoration: line-through;
}

/* now let's create the colors */

.red {
color: red;
}

.blue {
color: blue;
}

.green {
color: green;
}

.orange {
color: orange;
}

.yellow {
color: yellow;
}

.pink {
color: pink;
}

.grey {
color: grey;
}

.darkgrey {
color: darkgrey;
}