Difference between revisions of "MediaWiki:Common.css"
From The Official Visionaire Studio: Adventure Game Engine Wiki
Line 5: | Line 5: | ||
body { | body { | ||
/* fallback */ | /* fallback */ | ||
− | background-color: # | + | background-color: #663366; |
background-image: url(images/radial_bg.png); | background-image: url(images/radial_bg.png); | ||
background-position: center center; | background-position: center center; | ||
background-repeat: no-repeat; | background-repeat: no-repeat; | ||
/* Safari 4-5, Chrome 1-9 */ /* Can't specify a percentage size? Laaaaaame. */ | /* Safari 4-5, Chrome 1-9 */ /* Can't specify a percentage size? Laaaaaame. */ | ||
− | background: -webkit-gradient(radial, center center, 0, center center, 460, from(# | + | background: -webkit-gradient(radial, center center, 0, center center, 460, from(#663366), to(#8c6673)); |
/* Safari 5.1+, Chrome 10+ */ | /* Safari 5.1+, Chrome 10+ */ | ||
− | background: -webkit-radial-gradient(circle, # | + | background: -webkit-radial-gradient(circle, #663366, #8c6673); |
− | /* Firefox 3.6+ */ background: -moz-radial-gradient(circle, # | + | /* Firefox 3.6+ */ background: -moz-radial-gradient(circle, #663366, #8c6673); |
− | /* IE 10 */ background: -ms-radial-gradient(circle, # | + | /* IE 10 */ background: -ms-radial-gradient(circle, #663366, #8c6673); |
/* Opera couldn't do radial gradients, then at some point they started supporting the -webkit- syntax, how it kinda does but it's kinda broken (doesn't do sizing) */ | /* Opera couldn't do radial gradients, then at some point they started supporting the -webkit- syntax, how it kinda does but it's kinda broken (doesn't do sizing) */ | ||
} | } | ||
Line 22: | Line 22: | ||
padding-bottom: 10px; | padding-bottom: 10px; | ||
border-radius: 10px; | border-radius: 10px; | ||
+ | |||
+ | /* fallback */ | ||
+ | background-color: #B39980; | ||
+ | background: url(images/linear_bg_2.png); | ||
+ | background-repeat: repeat-x; | ||
+ | /* Safari 4-5, Chrome 1-9 */ | ||
+ | background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#B39980), to(#CFB590)); | ||
+ | /* Safari 5.1, Chrome 10+ */ | ||
+ | background: -webkit-linear-gradient(top, #B39980, #CFB590); | ||
+ | /* Firefox 3.6+ */ | ||
+ | background: -moz-linear-gradient(top, #B39980, #CFB590); | ||
+ | /* IE 10 */ background: -ms-linear-gradient(top, #B39980, #CFB590); | ||
+ | /* Opera 11.10+ */ background: -o-linear-gradient(top, #B39980, #CFB590); | ||
-webkit-box-shadow: 0px 3px 4px 0px rgba(50, 50, 50, 0.75); | -webkit-box-shadow: 0px 3px 4px 0px rgba(50, 50, 50, 0.75); | ||
Line 36: | Line 49: | ||
table.wikitable, table.prettytable { | table.wikitable, table.prettytable { | ||
− | + | margin: 1em 1em 1em 0; | |
− | + | background: #9E9A41; | |
− | + | /*border: 1px #aaaaaa solid;*/ | |
− | + | border-collapse: collapse; | |
-webkit-border-bottom-right-radius: 10px; | -webkit-border-bottom-right-radius: 10px; |
Revision as of 12:35, 19 August 2014
/* CSS placed here will be applied to all skins */
.toc, #toc { display: none; } /* kill content boxes */
body {
/* fallback */
background-color: #663366;
background-image: url(images/radial_bg.png);
background-position: center center;
background-repeat: no-repeat;
/* Safari 4-5, Chrome 1-9 */ /* Can't specify a percentage size? Laaaaaame. */
background: -webkit-gradient(radial, center center, 0, center center, 460, from(#663366), to(#8c6673));
/* Safari 5.1+, Chrome 10+ */
background: -webkit-radial-gradient(circle, #663366, #8c6673);
/* Firefox 3.6+ */ background: -moz-radial-gradient(circle, #663366, #8c6673);
/* IE 10 */ background: -ms-radial-gradient(circle, #663366, #8c6673);
/* Opera couldn't do radial gradients, then at some point they started supporting the -webkit- syntax, how it kinda does but it's kinda broken (doesn't do sizing) */
}
#content {
background-color: #cfb590;
padding-bottom: 10px;
border-radius: 10px;
/* fallback */
background-color: #B39980;
background: url(images/linear_bg_2.png);
background-repeat: repeat-x;
/* Safari 4-5, Chrome 1-9 */
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#B39980), to(#CFB590));
/* Safari 5.1, Chrome 10+ */
background: -webkit-linear-gradient(top, #B39980, #CFB590);
/* Firefox 3.6+ */
background: -moz-linear-gradient(top, #B39980, #CFB590);
/* IE 10 */ background: -ms-linear-gradient(top, #B39980, #CFB590);
/* Opera 11.10+ */ background: -o-linear-gradient(top, #B39980, #CFB590);
-webkit-box-shadow: 0px 3px 4px 0px rgba(50, 50, 50, 0.75);
-moz-box-shadow: 0px 3px 4px 0px rgba(50, 50, 50, 0.75);
box-shadow: 0px 3px 4px 0px rgba(50, 50, 50, 0.75);
-webkit-border-bottom-right-radius: 10px;
-webkit-border-bottom-left-radius: 10px;
-moz-border-radius-bottomright: 10px;
-moz-border-radius-bottomleft: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
}
table.wikitable, table.prettytable {
margin: 1em 1em 1em 0;
background: #9E9A41;
/*border: 1px #aaaaaa solid;*/
border-collapse: collapse;
-webkit-border-bottom-right-radius: 10px;
-webkit-border-bottom-left-radius: 10px;
-moz-border-radius-bottomright: 10px;
-moz-border-radius-bottomleft: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
}
/* let's create the various font styles */
.bold {
font-weight: bold;
}
.italic {
font-style: italic;
}
.underline {
text-decoration: underline;
}
.strike {
text-decoration: line-through;
}
.medium {
font-size: 15px;
}
.large {
font-size: 18px;
}
/* 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%;
}
.tbl-alt {
background: #ebebeb;
/*border: 1px dashed darkgrey;*/
width: 100%;
}
.gruen {
background: #B8FF94;
}
.scriptable {
background: #66FF33;
}