featured image different style on the list and on single post

I saw you installed twentytwelve theme, So follow there steps

Open file content.php in root folder theme and find

the_post_thumbnail();

change to

if ( is_single() ) :
the_post_thumbnail( 'full' );
else :
the_post_thumbnail( 'thumbnail' );
endif;