Difference between revisions of "MediaWiki:Common.css"

From The Official Visionaire Studio: Adventure Game Engine Wiki
Line 90: Line 90:
  
 
#filetoc {
 
#filetoc {
  background: #1C1C1C;
+
  background: rgba(155, 155, 155, 0.2);
 
}
 
}
  
Line 116: Line 116:
  
 
table.wikitable.filehistory tr:hover {
 
table.wikitable.filehistory tr:hover {
   background: rgba(155, 155, 155, 0.1);
+
   background: rgba(155, 155, 155, 0.3);
 
}
 
}
  

Revision as of 19:51, 13 June 2018

/* 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: lightcoral;
}

.blue {
color: blue;
}

.green {
color: lightgreen;
}

.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;*/
. info
width: 100%;
}

.scriptable {
background: #7A7A7A;
}

#filetoc {
 background: rgba(155, 155, 155, 0.2);
}

table.wikitable.filehistory {
 margin-top: 1em;
 margin-bottom: 1em;
 background: transparent;
 border-collapse: separate;
 border-spacing: 2px 2px;
 width: 100%;
}

table.wikitable.filehistory td {
  background: rgba(155, 155, 155, 0.2);
  vertical-align: top;
  padding: 5px;
}

table.wikitable.filehistory td {
  background: rgba(155, 155, 155, 0.2);
  vertical-align: middle;
  text-align: center;
  padding: 5px;
}

table.wikitable.filehistory tr:hover {
  background: rgba(155, 155, 155, 0.3);
}

table.wikitable.filehistory th {
 background: #5bc0de;
 text-align:left;
 padding: 5px;
 color: rgba(0,0,0,0.7);
}