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 */
/* Table for navigational menu on drop page */
td.nav {
opacity: 1;
filter: alpha(opacity=100);
}
td.nav:hover {
opacity: 0.5;
filter: alpha(opacity=50);
}
/* Table for attacks and Pokémon type relations */
table.attacks, table.pokemon {
border: 1px solid black;
-webkit-border-top-left-radius: 15px;
-webkit-border-top-right-radius: 15px;
-moz-border-radius-topleft: 15px;
-moz-border-radius-topright: 15px;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
}
th.attacksLeft, th.pokemonLeft { /* Left most table header only */
background-color: #ffff99;
-webkit-border-top-left-radius: 15px;
-moz-border-radius-topleft: 15px;
border-top-left-radius: 15px;
}
th.attacksMiddle, th.pokemonMiddle { /* Middle table header only */
background-color: #ffff99;
}
th.attacksRight, th.pokemonRight { /* Right most table header only */
background-color: #ffff99;
-webkit-border-top-right-radius: 15px;
-moz-border-radius-topright: 15px;
border-top-right-radius: 15px;
}
td.bug {
background-color: #009900;
}
td.dark {
background-color: #2e2e1f;
}
td.dragon {
background-color: #7f00ff;
}
td.electric {
background-color: #cacc00;
}
