Difference between revisions of "MediaWiki:Common.css"
From The Official Visionaire Studio: Adventure Game Engine Wiki
(508 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* 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 */ | |
− | |||
− | |||
− | + | .vsyellow { | |
− | + | color: rgba(255, 153, 0, 0.9); | |
− | |||
− | |||
} | } | ||
− | + | .red { | |
− | + | color: lightcoral; | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
} | } | ||
− | + | .blue { | |
− | + | color: blue; | |
− | |||
} | } | ||
− | |||
− | + | .green { | |
− | + | color: lightgreen; | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
} | } | ||
− | + | .orange { | |
− | + | color: orange; | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
} | } | ||
− | + | .yellow { | |
− | + | color: yellow; | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
} | } | ||
− | + | .pink { | |
− | + | color: pink; | |
− | |||
− | |||
− | |||
} | } | ||
− | . | + | .grey { |
− | + | color: grey; | |
} | } | ||
− | + | .darkgrey { | |
− | + | color: darkgrey; | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | . | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
} | } | ||
− | + | /* misc styles */ | |
− | |||
− | |||
− | . | + | .mw-body div:not(.toc) > ul, .mw-body div:not(.toc) > ul ul { |
− | + | list-style: square !important; | |
− | + | padding-left: 15px !important; | |
− | |||
− | |||
− | |||
} | } | ||
− | |||
− | + | .copybtn { | |
− | + | background-color: white; | |
− | + | color: black; | |
− | + | border-top-left-radius: 5px; | |
− | + | border-top-right-radius: 5px; | |
− | + | position:absolute; | |
− | + | right: 34px; | |
− | + | margin-top: -27px; | |
− | + | border: solid 1px #ddd; | |
− | + | border-top: solid 1px #ddd; | |
− | + | border-left: solid 1px #ddd; | |
− | + | border-right: solid 1px #ddd; | |
− | # | + | border-bottom: solid 1px white; |
− | + | /*transition-duration: 0.1s;*/ | |
− | + | min-width:10rem; | |
− | |||
− | |||
− | |||
− | |||
− | |||
} | } | ||
− | + | .copybtn:hover { background-color: rgba(255, 153, 0, 0.7); } | |
− | } | ||
− | + | .copybtn:after, .copybutton:before { content: "Copy Text"; } | |
− | + | .copybtn:focus:after, .copybtn:active:after { content: "Copied"; } | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | } | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | } | ||
− | + | .spoiler { | |
− | + | background-color: rgba(0,0,0,0.25); | |
+ | color: transparent; | ||
+ | user-select: none; | ||
+ | border-radius: 25px; | ||
} | } | ||
− | + | .inlinecode { | |
− | + | background-color: rgba(0,0,0,0.1); | |
− | + | /*color: rgba(255, 153, 0, 0.9);*/ | |
− | + | color: navajowhite; | |
− | + | padding:2px; | |
− | + | /*user-select: none;*/ | |
− | + | border-radius: 3px; | |
− | |||
− | |||
} | } | ||
/* | /* | ||
− | + | .spoiler:focus { | |
− | + | background-color: inherit; | |
− | + | color: inherit; | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
} | } | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
*/ | */ | ||
− | |||
− | |||
− | + | .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;*/ | |
− | + | . info | |
− | + | width: 100%; | |
− | |||
− | |||
− | |||
− | |||
} | } | ||
− | + | .scriptable { | |
− | + | background: #7A7A7A; | |
− | |||
− | |||
− | . | ||
− | |||
− | |||
− | |||
− | |||
} | } | ||
− | + | #filetoc { | |
− | + | background: rgba(155, 155, 155, 0.2); | |
− | + | text-align: left; | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
} | } | ||
− | . | + | table.wikitable.filehistory { |
− | + | margin-top: 1em; | |
− | + | margin-bottom: 1em; | |
− | + | background: transparent; | |
+ | border-collapse: separate; | ||
+ | border-spacing: 2px 2px; | ||
+ | border-color: transparent; | ||
+ | width: 100%; | ||
+ | color: rgba(255, 255, 255, 0.8); | ||
} | } | ||
− | . | + | table.wikitable.filehistory td { |
− | + | background: rgba(0, 0, 0, 0.2); | |
− | + | border-color: transparent; | |
+ | vertical-align: middle; | ||
+ | text-align: center; | ||
+ | padding: 5px; | ||
} | } | ||
− | . | + | table.wikitable.filehistory tr:hover { |
− | + | background: rgba(0, 0, 0, 0.1); | |
− | |||
} | } | ||
− | . | + | table.wikitable.filehistory th { |
− | + | background: #5bc0de; | |
+ | border-color: transparent; | ||
+ | text-align:left; | ||
+ | padding: 5px; | ||
+ | color: rgba(0,0,0,0.7); | ||
} | } | ||
− | . | + | .oo-ui-dialog { |
− | + | color: #000000; | |
} | } | ||
− | + | #slideshow { | |
− | + | margin: 0px 0px; | |
+ | position: relative; | ||
+ | top: -7px; | ||
+ | width: 100%; | ||
+ | padding: 0px; | ||
+ | /*box-shadow: 0 0 20px rgba(0,0,0,0.4);*/ | ||
} | } | ||
− | + | #slideshow > div { | |
− | + | position: absolute; | |
+ | top: 0px; | ||
+ | left: 0px; | ||
+ | right: 0px; | ||
+ | bottom: 0px; | ||
} | } | ||
− | + | .thumbinner { | |
− | + | background-image: url("/css/img/dark_content.png"); | |
− | . | + | border: 0px; |
− | + | padding: 5px; | |
− | + | margin-bottom: 0; /* requested by einzelkämpfer */ | |
− | |||
− | |||
} | } | ||
− | . | + | .thumbcaption { |
− | + | color: rgba(255, 255, 255, 0.8); | |
− | + | font-size: 15px; /* requested by einzelkämpfer */ | |
− | |||
} | } | ||
− | . | + | .mw-htmlform-submit { |
− | + | color: #000000; | |
− | |||
} | } | ||
− | + | legend { | |
− | + | color: rgba(255, 153, 0, 0.9); | |
− | |||
− | |||
} | } | ||
− | + | fieldset { | |
− | + | border: 2px solid rgba(0,0,0,0.2); | |
− | |||
− | |||
} | } | ||
− | . | + | kbd { |
− | + | display: inline-block; | |
+ | border: 1px solid #ccc; | ||
+ | border-radius: 4px; | ||
+ | padding: 0.1em 0.5em; | ||
+ | margin: 0 0.2em; | ||
+ | box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #fff inset; | ||
+ | background-color: #f7f7f7; | ||
+ | color: #1a1a1a; | ||
} | } | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | . | + | table.vy th { |
− | + | border: 2px solid rgba(0, 0, 0, 0.1); | |
+ | margin-top: 1em; | ||
+ | margin-bottom: 1em; | ||
+ | border-collapse: separate; | ||
+ | border-spacing: 2px 2px; | ||
+ | width: 100%; | ||
+ | vertical-align: top; | ||
+ | padding: 5px; | ||
+ | font-size: 13px; | ||
+ | text-decoration: none; | ||
+ | font-weight: bold; | ||
+ | background: rgba(0, 0, 0, 0.2); | ||
+ | text-align:left; | ||
+ | color: rgba(255, 153, 0, 0.9); | ||
} | } | ||
− | |||
− | + | /* social media icon bar */ | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | . | + | /* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */ |
− | + | .icon-bar { | |
− | + | background-image: url("/css/img/dark_content.png"); | |
− | + | position: fixed; | |
+ | top: 53px; | ||
+ | right: 0px; | ||
+ | border-bottom-left-radius: 10px; | ||
+ | -webkit-box-shadow: 2px 0px 4px 0px rgba(50, 50, 50, 0.5); | ||
+ | -moz-box-shadow: 2px 0px 4px 0px rgba(50, 50, 50, 0.5); | ||
+ | box-shadow: 2px 0px 4px 0px rgba(50, 50, 50, 0.5); | ||
} | } | ||
− | /* | + | /* Style the icon bar links */ |
− | + | .icon-bar a { | |
− | + | display: absolute; | |
− | + | text-align: center; | |
− | + | padding: 10px; | |
− | + | font-size: 25px; | |
− | |||
− | |||
− | |||
− | font- | ||
} | } | ||
− | . | + | .facebook { color:#ffffff !important; transition: all 0.3s ease; } |
− | |||
− | } | ||
− | . | + | .facebook:hover { color: #4267B2 !important; } |
− | |||
− | } | ||
− | . | + | .twitter { color: #ffffff !important; transition: all 0.3s ease; } |
− | |||
− | } | ||
− | . | + | .twitter:hover { color: #1DA1F2 !important; } |
− | |||
− | } | ||
− | . | + | .discord { color: #ffffff !important; transition: all 0.3s ease; } |
− | |||
− | } | ||
− | + | .discord:hover { color: #5965f1 !important; } | |
− | + | /* footer section */ | |
− | |||
− | |||
− | . | + | #footer-places a { color: rgba(255, 153, 0, 0.7) !important; } |
− | color: | + | #footer-places a:hover { color: rgba(255, 153, 0, 0.9) !important; } |
− | } | ||
− | + | /* syntaxhighlight */ | |
− | |||
− | |||
− | . | + | .mw-highlight pre { |
− | color: | + | font-size: 90%; |
+ | background-color: white; | ||
+ | /*border: 1px solid black;*/ | ||
+ | /*background: #272822;*/ | ||
+ | /*color: #f8f8f2;*/ | ||
+ | max-height: 500px; | ||
} | } | ||
− | . | + | /* |
− | color: | + | .lua .de1 { |
+ | font-family: monospace; | ||
+ | color: #fd971f; | ||
+ | margin: 0 0 0 0; | ||
} | } | ||
− | . | + | .lua .kw1 { |
− | color: | + | color: #f92672; |
+ | font-weight: bold; | ||
} | } | ||
− | . | + | .lua .co1, .lua .coMULTI { |
− | color: | + | color: #75715e; |
+ | font-weight: normal; | ||
} | } | ||
− | . | + | .lua .nu0 { |
− | color: | + | color: #ae81ff; |
} | } | ||
− | + | .lua .sy0 { | |
− | + | color: #a6e22e; | |
− | . | ||
− | |||
− | |||
} | } | ||
− | . | + | .lua .st0 { |
− | + | color: #e6db74; | |
− | |||
− | |||
} | } | ||
− | . | + | .lua .br0 { |
− | + | color: #f8f8f2; | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | . | ||
− | |||
} | } | ||
+ | */ |
Latest revision as of 00:56, 16 October 2022
/* 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 */
.vsyellow {
color: rgba(255, 153, 0, 0.9);
}
.red {
color: lightcoral;
}
.blue {
color: blue;
}
.green {
color: lightgreen;
}
.orange {
color: orange;
}
.yellow {
color: yellow;
}
.pink {
color: pink;
}
.grey {
color: grey;
}
.darkgrey {
color: darkgrey;
}
/* misc styles */
.mw-body div:not(.toc) > ul, .mw-body div:not(.toc) > ul ul {
list-style: square !important;
padding-left: 15px !important;
}
.copybtn {
background-color: white;
color: black;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
position:absolute;
right: 34px;
margin-top: -27px;
border: solid 1px #ddd;
border-top: solid 1px #ddd;
border-left: solid 1px #ddd;
border-right: solid 1px #ddd;
border-bottom: solid 1px white;
/*transition-duration: 0.1s;*/
min-width:10rem;
}
.copybtn:hover { background-color: rgba(255, 153, 0, 0.7); }
.copybtn:after, .copybutton:before { content: "Copy Text"; }
.copybtn:focus:after, .copybtn:active:after { content: "Copied"; }
.spoiler {
background-color: rgba(0,0,0,0.25);
color: transparent;
user-select: none;
border-radius: 25px;
}
.inlinecode {
background-color: rgba(0,0,0,0.1);
/*color: rgba(255, 153, 0, 0.9);*/
color: navajowhite;
padding:2px;
/*user-select: none;*/
border-radius: 3px;
}
/*
.spoiler:focus {
background-color: inherit;
color: inherit;
}
*/
.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;*/
. info
width: 100%;
}
.scriptable {
background: #7A7A7A;
}
#filetoc {
background: rgba(155, 155, 155, 0.2);
text-align: left;
}
table.wikitable.filehistory {
margin-top: 1em;
margin-bottom: 1em;
background: transparent;
border-collapse: separate;
border-spacing: 2px 2px;
border-color: transparent;
width: 100%;
color: rgba(255, 255, 255, 0.8);
}
table.wikitable.filehistory td {
background: rgba(0, 0, 0, 0.2);
border-color: transparent;
vertical-align: middle;
text-align: center;
padding: 5px;
}
table.wikitable.filehistory tr:hover {
background: rgba(0, 0, 0, 0.1);
}
table.wikitable.filehistory th {
background: #5bc0de;
border-color: transparent;
text-align:left;
padding: 5px;
color: rgba(0,0,0,0.7);
}
.oo-ui-dialog {
color: #000000;
}
#slideshow {
margin: 0px 0px;
position: relative;
top: -7px;
width: 100%;
padding: 0px;
/*box-shadow: 0 0 20px rgba(0,0,0,0.4);*/
}
#slideshow > div {
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
}
.thumbinner {
background-image: url("/css/img/dark_content.png");
border: 0px;
padding: 5px;
margin-bottom: 0; /* requested by einzelkämpfer */
}
.thumbcaption {
color: rgba(255, 255, 255, 0.8);
font-size: 15px; /* requested by einzelkämpfer */
}
.mw-htmlform-submit {
color: #000000;
}
legend {
color: rgba(255, 153, 0, 0.9);
}
fieldset {
border: 2px solid rgba(0,0,0,0.2);
}
kbd {
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
padding: 0.1em 0.5em;
margin: 0 0.2em;
box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #fff inset;
background-color: #f7f7f7;
color: #1a1a1a;
}
table.vy th {
border: 2px solid rgba(0, 0, 0, 0.1);
margin-top: 1em;
margin-bottom: 1em;
border-collapse: separate;
border-spacing: 2px 2px;
width: 100%;
vertical-align: top;
padding: 5px;
font-size: 13px;
text-decoration: none;
font-weight: bold;
background: rgba(0, 0, 0, 0.2);
text-align:left;
color: rgba(255, 153, 0, 0.9);
}
/* social media icon bar */
/* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
.icon-bar {
background-image: url("/css/img/dark_content.png");
position: fixed;
top: 53px;
right: 0px;
border-bottom-left-radius: 10px;
-webkit-box-shadow: 2px 0px 4px 0px rgba(50, 50, 50, 0.5);
-moz-box-shadow: 2px 0px 4px 0px rgba(50, 50, 50, 0.5);
box-shadow: 2px 0px 4px 0px rgba(50, 50, 50, 0.5);
}
/* Style the icon bar links */
.icon-bar a {
display: absolute;
text-align: center;
padding: 10px;
font-size: 25px;
}
.facebook { color:#ffffff !important; transition: all 0.3s ease; }
.facebook:hover { color: #4267B2 !important; }
.twitter { color: #ffffff !important; transition: all 0.3s ease; }
.twitter:hover { color: #1DA1F2 !important; }
.discord { color: #ffffff !important; transition: all 0.3s ease; }
.discord:hover { color: #5965f1 !important; }
/* footer section */
#footer-places a { color: rgba(255, 153, 0, 0.7) !important; }
#footer-places a:hover { color: rgba(255, 153, 0, 0.9) !important; }
/* syntaxhighlight */
.mw-highlight pre {
font-size: 90%;
background-color: white;
/*border: 1px solid black;*/
/*background: #272822;*/
/*color: #f8f8f2;*/
max-height: 500px;
}
/*
.lua .de1 {
font-family: monospace;
color: #fd971f;
margin: 0 0 0 0;
}
.lua .kw1 {
color: #f92672;
font-weight: bold;
}
.lua .co1, .lua .coMULTI {
color: #75715e;
font-weight: normal;
}
.lua .nu0 {
color: #ae81ff;
}
.lua .sy0 {
color: #a6e22e;
}
.lua .st0 {
color: #e6db74;
}
.lua .br0 {
color: #f8f8f2;
}
*/