diff --git a/css/pokenurse.css b/css/pokenurse.css index 9ca9afd..ed1cd47 100644 --- a/css/pokenurse.css +++ b/css/pokenurse.css @@ -34,6 +34,15 @@ thead > tr > td { /* Pokemon Detail CSS */ +.pokemon-avatar { + width: 80px; + height: 85px; +} + +.pokemon-avatar > .pokemon-sprite { + transform: translate3d(-40px, -4px, 0px); +} + #mv_contents { margin-left: 30px; margin-right: 10px; diff --git a/home.html b/home.html index 9fe7d51..b35afc8 100644 --- a/home.html +++ b/home.html @@ -32,6 +32,7 @@

Pokédex # + Sprite Name Nickname CP diff --git a/js/home.js b/js/home.js index 4d72b10..db9e6a2 100644 --- a/js/home.js +++ b/js/home.js @@ -104,6 +104,7 @@ function sortPokemonList (sorting, refresh) { html += '' + checkBox + '>' html += '' html += '' + poke['pokemon_id'] + '' + html += '' + '
' + '' html += '' + poke['name'] + '' html += '' + poke['nickname'] + '' html += '' + poke['cp'] + ''