Difference between revisions of "MediaWiki:Common.css"

From The Official Visionaire Studio: Adventure Game Engine Wiki
Line 100: Line 100:
 
}
 
}
  
table.ts tr td:hover, table.ex tr td:hover {
+
table.ts td tr:hover, table.ex td tr:hover {
 
   background: rgba(155, 155, 155, 0.1);
 
   background: rgba(155, 155, 155, 0.1);
 
}
 
}
Line 111: Line 111:
  
 
table.ex th {
 
table.ex th {
background: rgba(0, 0, 0, 0.3)
+
background: rgba(100, 100, 100, 0.1)
  font-size: 18px;
+
  font-size: 24px;
 
  text-align:left;
 
  text-align:left;
 
  padding: 5px;
 
  padding: 5px;

Revision as of 03:43, 20 August 2014

/* CSS placed here will be applied to all skins */

/* standard link colors */
.mw-body a:link { color: rgba(91, 192, 222, 0.7); } /* normal unvisited links */
.mw-body a:link:visited { color: rgba(91, 192, 222, 0.9); } /* visited links */
.mw-body a:link:active { color: rgba(91, 192, 222, 1); } /* active links */
.mw-body a:link.new { color: rgba(91, 192, 222, 0.2) !important; } /* new links */
.mw-body a:link.interwiki { color: rgba(91, 192, 222, 0.9); } /* interwiki links */
.mw-body a:link.external { color: rgba(91, 192, 222, 0.9); } /* external links */
.mw-body a:link.stub { color: rgba(91, 192, 222, 0.9); } /* hovered links */
.mw-body a:link, a:link {color: rgba(91, 192, 222, 0.9)}
.mw-body a:visited, a:visited {color: rgba(91, 192, 222, 0.9)}
.mw-body a:hover, a:hover {color: rgba(91, 192, 222, 1)}
.mw-body a:active, a:active {color: rgba(91, 192, 222, 1)}

/* table colors */
table.ts a, table.ex a { text-decoration: none; font-weight: bold; }
table.ts a:link, table.ex a:link { color: rgba(92, 184, 92, 0.9); } /* normal unvisited links */
table.ts a:link:visited, table.ex a:link:visited { color: rgba(92, 184, 92, 0.9); } /* visited links */
table.ts a:link:active, table.ex a:link:active { color: rgba(92, 184, 92, 1); } /* active links */
table.ts a:link.new, table.ex a:link.new { color: rgba(92, 184, 92, 0.2) !important; } /* new links */
table.ts a:link.interwiki, table.ex a:link.interwiki { color: rgba(92, 184, 92, 0.9); } /* interwiki links */
table.ts a:link.external, table.ex a:link.external { color: rgba(92, 184, 92, 0.9); } /* external links */
table.ts a:link.stub, table.ex a:link.stub { color: rgba(92, 184, 92, 0.9); } /* hovered links */
table.ts a:link, table.ex a:link {color: rgba(92, 184, 92, 0.9)}
table.ts a:visited, table.ex a:visited {color: rgba(92, 184, 92, 0.9)}
table.ts a:hover, table.ex a:hover {color: rgba(92, 184, 92, 1)}
table.ts a:active, table.ex a:active {color: rgba(92, 184, 92, 1)}

.toc, #toc { display: none; } /* kill content boxes */
.cent { text-align: center; }

.wikiEditor-ui-buttons button, .editOptions {
color:#000000;	
}

.navbar-default .navbar-nav {
  -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);
}

.navbar-default .navbar-nav > li > a {
 color: #5bc0de;
 font-weight: bold;
}

.dropdown-menu {
  -webkit-box-shadow: 0px 3px 4px 0px rgba(50, 50, 50, 0.50);
  -moz-box-shadow:    0px 3px 4px 0px rgba(50, 50, 50, 0.50);
  box-shadow:         0px 3px 4px 0px rgba(50, 50, 50, 0.50);
}

#content {
 padding-bottom: 10px;

 /* fallback */
 background-color: #4e5d6c;
 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(#4e5d6c), to(#485563));
 /* Safari 5.1, Chrome 10+ */
 background: -webkit-linear-gradient(top, #4e5d6c, #485563);
 /* Firefox 3.6+ */
 background: -moz-linear-gradient(top, #4e5d6c, #485563);
 /* IE 10 */ background: -ms-linear-gradient(top, #4e5d6c, #485563);
 /* Opera 11.10+ */ background: -o-linear-gradient(top, #4e5d6c, #485563);

 -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.ts, table.ex {
 margin: 1em 1em 1em 0;
 background: transparent;
 border-collapse: separate;
 border-spacing: 2px 2px;
 width: 100%;
}

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

table.ex td {
 font-size: 13px;
 font-style: italic;
}

table.ts td tr:hover, table.ex td tr:hover {
  background: rgba(155, 155, 155, 0.1);
}

table.ts th {
 background: #5bc0de;
 text-align:left;
 padding: 5px;
}

table.ex th {
background: rgba(100, 100, 100, 0.1)
 font-size: 24px;
 text-align:left;
 padding: 5px;
}



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

.scriptable {
background: #7A7A7A;
}