MediaWiki:Wikia.css

From Portals of Phereon Wiki
Revision as of 10:17, 6 September 2019 by portalsofphereon>Olaroll

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.
/*********************************Tabview Design**********************************/

/* Selected Tab */
ul.tabs li.selected a {
    /* color: White !important; */
    background: #572806 !important;
    border: 3px solid Black !important;
    border-bottom: none !important;
    border-radius: 4px 4px 0 0 !important;
}
 
/* Normal Tab; NOT selected */
ul.tabs li a {
    background: #a55b26 !important;
    /* color: White !important; */
    border: 2px solid Black !important;
    border-bottom: none !important;
}
 
/* Contents of the selected tab */
.tabBody.selected {
    background: #caac95 !important;
    color: Black !important;
    border: 3px solid Black !important;
    border-radius: 0 0 6px 6px !important;
    padding: 5px !important;
    box-shadow: 3px 3px 6px Black;
}

/* No section edit buttons */

.editsection { display: none; }

/*Changing the color of the links*/
a {
	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	-ms-transition: all 200ms;
	-o-transition: all 200ms;
	transition: all 200ms;
}

a:hover {
	-webkit-transition: all 300ms;
	-moz-transition: all 200ms;
	-ms-transition: all 200ms;
	-o-transition: all 200ms;
	transition: all 200ms;
	text-shadow: 0px 0px 2px #42bcd5;
	color: #42bcd5;
}

/*ul.tabs > [data-tab="BasicSpecies0"] {
	color: red !important;
}
ul.tabs > [data-tab="BasicSpecies1"] {
	color: blue !important;
}
ul.tabs > [data-tab="BasicSpecies2"] {
	color: green !important;
}*/