Unofficial GarouMUSH Wiki
Advertisement

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/***** CSS placed here will be applied to all skins on the entire site. *****/

/* Mark redirects in Special:Allpages and Special:Watchlist */
.allpagesredirect {
   font-style: italic;
}
.allpagesredirect:after {
   color: #808080; content: " (redirect)"
}
.watchlistredir {
   font-style: italic;
}

/* Colours */
.dark {
    background: #CCC;
}
 
.mid {
    background: #F2F2F2;
}

/* For Main Page */
.page-Main_Page .WikiaPageHeader {
    position: relative;
}
 
.page-Main_Page .wikia-page-header .header-container {
    align-items: flex-end;
    height: 0px;
    justify-content: flex-end;
    margin-top: -8px;
}
 
.page-Main_Page .header-title {
    display: none;
}
 
.page-Main_Page .header-tally {
    align-self: flex-end;
    display: flex;
    position: relative;
    top: 0;
}
 
.page-Main_Page .page-share-container {
    height: 30px;
    right: .75em;
    position: relative;
    top: 2px;
}
 
.mhead {
    background-color: #036;
    color: #FFF;
    font-size: 1.25em;
    padding:.5em .75em;
}
 
.mbox {
    padding: 1em;
}
 
.mblue {
    background-color: #CCF;
}
 
.mblue ul {
    padding-right: 2em;
}
 
.mheadlink, .mheadlink:hover {
    color: #CCF;
}

/* For Infobox_Garou */
.pcinfo {
    border: 2px solid #000;
    -moz-border-radius: 10px; 
    border-radius: 10px;
    border-spacing: 0;
    float:right; 
    margin-left: 1em; 
    margin-bottom: .5em; 
    padding-bottom: .5em; 
    width: 25em; 
}
 
.pcinfo tr {
    vertical-align: top;
}
 
.pcinfo td {
    padding: 0.25em 0.75em 0.25em 0.25em;
}
 
.pcinfo th {
    text-align: right;
    width: 40%;
    white-space: nowrap; 
    padding: 0.25em 0.25em 0.25em 0.75em;
}
 
.pcinfo td {
    text-align: left;
}
 
td.pchead {
    font-size: 120%; 
    font-weight: bold;
    text-align: center;
    -moz-border-radius-topright: 7px;
    border-top-right-radius: 7px;
    -moz-border-radius-topleft: 7px;
    border-top-left-radius: 7px;
}
 
td.pcsubhead {
    border-width: 1px 0;
    border-style: solid;
    font-size: 110%;
    font-weight: bold;
    text-align: center;
}

.pcinfo img {
    margin: 0 1em;
}

.pcaltalt img {
    margin: 0 .5em;
}

/* For Pack Template */
.packinfo {
    width: 27em;
}

.pcinfo.packinfo img {
    height: auto;
    margin: 1em auto 0.65em;
    max-width: 340px;
}

/* For Stats Template */
.stats {
    border: 1px solid black;
    border-collapse: collapse; 
    margin: 1em auto;
    color: #000;
    width: 550px;
}
 
.magic tr {
    vertical-align: top;
}
 
.stats td, .stats th {
    border: 1px solid black;
    padding: .5em .75em;
}
 
.statthird {  
    width: 33%; 
}
 
.statname { 
    width: 13em;
}
 
td.statnum {
    text-align: center; 
    padding: .5em; 
    width: 2.6em;
}
 
/* Tooltips */
.wrapper {
  cursor: help;
  position: relative;
  font-weight: bold;
  text-decoration: underline;
  -webkit-transform: translateZ(0); /* webkit flicker fix */
  -webkit-font-smoothing: antialiased; /* webkit text rendering fix */
}
 
.wrapper .tooltip {
  background: #000;
  bottom: 100%;
  color: #fff;
  display: block;
  font-size: 1em;
  left: -93px;
  margin-bottom: .25em;
  opacity: 0;
  padding: 1em;
  pointer-events: none;
  position: absolute;
  width: 200px; 
  -webkit-transform: translateY(10px);
     -moz-transform: translateY(10px);
      -ms-transform: translateY(10px);
       -o-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all .25s ease-out;
     -moz-transition: all .25s ease-out;
      -ms-transition: all .25s ease-out;
       -o-transition: all .25s ease-out;
          transition: all .25s ease-out;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
     -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
      -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
       -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
          box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
}
 
/* This bridges the gap so you can mouse into the tooltip without it disappearing */
.wrapper .tooltip:before {
  bottom: -20px; 
  content: " ";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  width: 100%; 
}  
 
/* CSS Triangles */
.wrapper .tooltip:after {
  border-left: solid transparent 10px;
  border-right: solid transparent 10px;
  border-top: solid #000 10px;
  bottom: -10px;
  content: " ";
  height: 0;
  left: 50%;
  margin-left: -13px;
  position: absolute;
  width: 0;
}
 
.wrapper:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0px);
     -moz-transform: translateY(0px);
      -ms-transform: translateY(0px);
       -o-transform: translateY(0px);
          transform: translateY(0px);
}

 /* Tweaks */
.wikia-gallery {
    display: table;
    text-align: center;
}

#toc ol {
    margin: 1em;
}

#toc ol > li > ol {
    margin: 0 0 0 1.75em;
}

#toc ol li a {
    padding-left: .5em;
}

#toc li::before {
    content: counters(item, ".", decimal) ". ";
}

/* Log tweak for FF */
html>/**/body .logdate, x:-moz-any-link, x:default {height:100% !important}

/* Log tweak for Chrome/Safari */
@media screen and (-webkit-min-device-pixel-ratio:0)
{
.logcast {height:100%}
}
Advertisement