Monkie Kid 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.
/* Portable Infobox */
.portable-infobox {
    float:right;
    border-radius: 10px;
    border: 2px solid #882d17;
    overflow: hidden;
}

ul.pi-image-collection-tabs li.pi-tab-link {
    background: transparent;
    border-color: transparent;
}

ul.pi-image-collection-tabs li.pi-tab-link:not(.current) {
    font-weight: bold;
    color: #882d17;
}

ul.pi-image-collection-tabs li.pi-tab-link:not(.current):hover {
    text-decoration: underline;
    color: #882d17;
}

.portable-infobox .pi-image-collection ul {
    margin: 0px;
}

.pi-title {
    color:white;
    text-align:center;
}

.pi-header {
    color:white;
    text-align:center;
}

.pi-navigation  {
    color:white;
    text-align:center;
}

.pi-navigation a {
    color:white;
}

ul.pi-image-collection-tabs li {
    font-size: 11px;
    padding: 0 1px 0 !important;
    border: 0px !important;
    text-align: center;
}

/* Headers */
h1 {
    font-family:'tournedos';
    color:#882d17;
}

h2 {
    font-family:'tournedos';
    color:#882d17;
}

/* Staff Links */
a[href$=":Samurai_viper"], a[href$="/Samurai viper"] {
    color:orange !important;
    font-weight:bold !important;
}

/* Thumb restyling */

figure.thumb, .activityfeed-inserted-media li {
    border: 1px solid #b2b2b2;
    border-radius: 1ex;
    overflow: hidden;
    box-sizing: border-box;
}

figcaption {
    margin: 0px;
}

figure.thumb figcaption .caption {
    font-size: 13px;
    margin: 8px;
}

.WikiaArticle figure.thumb p:last-child, .WikiaArticle figure.thumb p + p:last-child {
    padding: 0;
}

figure.thumb:hover {
    box-shadow: 0 0 2px #aaa;
}

/* Fix tabs in infobox */
.portable-infobox .wds-tabs {
    width: 100%;
    background-color: var(--pi-tabber-bg-color);
    border-top: 1px solid var(--pi-border);
}

.portable-infobox .wds-tabs .wds-tabs__tab {
    /* min-width: 33.33%;
    padding: 0 6px; * */
    text-align:
    center;color: var(--pi-tabber-color)
}

.portable-infobox .wds-tabs .wds-is-current {
    color: var(--theme-link-color);
}

.portable-infobox section:last-child .wds-tabs .wds-tabs__tab {
    /* width: 50%; */
    text-align: center;
}
/*
.portable-infobox .wds-tabs__tab-label {
	margin: 0;
}

/* Language box */
.theme-fandomdesktop-dark .page__main #p-lang {
	color:black;
}

//* Language interwiki links in a neat box -- Tm T */
.page__main #p-lang {
	/* background-color: #F0F0F0; */
	border: 1px solid #D0D0D0;
	margin-bottom: 10px;
	margin-top: 2em;
	clear: both;
}

.theme-fandomdesktop-dark .page__main #p-lang {
    border: 1px solid #263234;
}
 
.theme-fandomdesktop-dark .page__main #p-lang > div:first-child {
    background-color: #263234;
    color: white;
}
 
.theme-fandomdesktop-dark .page__main #p-lang ul li {
    border-left: 1px solid #263234;
}
 
.page__main #p-lang > div:first-child {
	background-color: #D0D0D0;
	font-weight: bold;
	margin: 0;
	padding: 0 1em;
}
 
.page__main #p-lang ul {
	list-style: none inside none;
	margin-left: -1px;
	overflow: auto;
}
 
.page__main #p-lang ul li {
	border-left: 1px solid #C0C0C0;
	float: left;
	padding-left: 13px;
	padding-right: 5px;
}

/* Spoiler Blur */
.spoilerblur {
  filter: blur(3px); /* fallback if for some reason browsers can't parse floating point */
  filter: blur(3.5px);
  opacity: 0.40;
  transition: filter 1s linear, opacity 1s linear, text-shadow 1s linear;
}
 
.spoilerblur:is(:hover, :focus, :focus-within, :active) {
  filter: blur(0px);
  opacity: 1;
  text-shadow: 0 0 0 transparent;
  transition-delay: 500ms;
}
Advertisement