Difference between revisions of "MediaWiki:Common.css"
From The Official Visionaire Studio: Adventure Game Engine Wiki
Line 57: | Line 57: | ||
.alt-bg { | .alt-bg { | ||
background: #ebebeb; | background: #ebebeb; | ||
+ | width: 100%; | ||
+ | } | ||
+ | |||
+ | .tbl-ds { | ||
+ | background: #f5f5f5; | ||
+ | border: 1px dashed darkgrey; | ||
width: 100%; | width: 100%; | ||
} | } |
Revision as of 22:25, 30 March 2013
/* 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;
}
/* misc styles */
.alt-bg {
background: #ebebeb;
width: 100%;
}
.tbl-ds {
background: #f5f5f5;
border: 1px dashed darkgrey;
width: 100%;
}