No edit summary |
(Added some Pokemon and attack type table elements.) |
||
| Line 10: | Line 10: | ||
opacity: 0.5; | opacity: 0.5; | ||
filter: alpha(opacity=50); | filter: alpha(opacity=50); | ||
} | |||
/* Table for attacks and Pokémon type relations */ | |||
table.attacks, table.pokemon { | |||
border: 1px solid black; | |||
border-radius: 15px; | |||
} | |||
th.attacks, th.pokemon { | |||
background-color: #ffff99; | |||
border-radius: 15px; | |||
} | |||
td.bug { | |||
background-color: #009900; | |||
border-radius: 15px; | |||
} | |||
td.dark { | |||
background-color: #2e2e1f; | |||
border-radius: 15px; | |||
} | |||
td.dragon { | |||
background-color: #7f00ff; | |||
border-radius: 15px; | |||
} | |||
td.electric { | |||
background-color: #cacc00; | |||
border-radius: 15px; | |||
} | } | ||
Revision as of 22:26, 27 November 2015
/* 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;
border-radius: 15px;
}
th.attacks, th.pokemon {
background-color: #ffff99;
border-radius: 15px;
}
td.bug {
background-color: #009900;
border-radius: 15px;
}
td.dark {
background-color: #2e2e1f;
border-radius: 15px;
}
td.dragon {
background-color: #7f00ff;
border-radius: 15px;
}
td.electric {
background-color: #cacc00;
border-radius: 15px;
}