Difference between revisions of "MediaWiki:Common.css"
From The Official Visionaire Studio: Adventure Game Engine Wiki
Line 1: | Line 1: | ||
+ | @-moz-document url-prefix('http://www.love2d.org/wiki/'), url-prefix('https://www.love2d.org/wiki/'), url-prefix('http://love2d.org/wiki/'), url-prefix('https://love2d.org/wiki/'), url-prefix('http://www.love2d.org/w/'), url-prefix('https://www.love2d.org/w/'), url-prefix('http://love2d.org/w/'), url-prefix('https://love2d.org/w/') { | ||
+ | |||
+ | |||
+ | |||
+ | div, li { | ||
+ | |||
+ | font-size: 1em; | ||
+ | |||
+ | } | ||
+ | |||
+ | |||
+ | |||
+ | div, input { | ||
+ | |||
+ | color: black; | ||
+ | |||
+ | } | ||
+ | |||
+ | |||
+ | |||
+ | a { | ||
+ | |||
+ | color: #006BBD; | ||
+ | |||
+ | } | ||
+ | |||
+ | |||
+ | |||
+ | #p-logo a, | ||
+ | |||
+ | #p-logo a:hover { | ||
+ | |||
+ | width: 171px; | ||
+ | |||
+ | } | ||
+ | |||
+ | |||
+ | |||
+ | } | ||
+ | |||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
Revision as of 12:57, 18 August 2014
@-moz-document url-prefix('http://www.love2d.org/wiki/'), url-prefix('https://www.love2d.org/wiki/'), url-prefix('http://love2d.org/wiki/'), url-prefix('https://love2d.org/wiki/'), url-prefix('http://www.love2d.org/w/'), url-prefix('https://www.love2d.org/w/'), url-prefix('http://love2d.org/w/'), url-prefix('https://love2d.org/w/') {
div, li {
font-size: 1em;
}
div, input {
color: black;
}
a {
color: #006BBD;
}
#p-logo a,
#p-logo a:hover {
width: 171px;
}
}
/* 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;
}
.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;
}