Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
antoine committed Jun 17, 2011
1 parent c1bd9cc commit 47a8ce6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ h1 {
h2 { font-size: 30px; line-height: 38px; margin:0; }
h3 { font-size: 22px; margin: 10px 0 20px; }

h3 small { font-size: 14px; color:#FA5945 !important; font-weight:normal !important; margin-left:10px; }

a, a:active { color:#490CCE; outline:0;}
a:hover { color:#0A28AC; }

Expand Down
2 changes: 1 addition & 1 deletion mhd.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ function usePlayer (player) {
console.log("previous/current fans? " + previousFans + "/" + currentFans);
$('#meta_info').append('<p><strong>' + (Math.abs(currentFans - previousFans) < 5 ? equal_img : (currentFans > previousFans ? up_img : down_img)) + ' <img src="' + icons[platform] + '"> ' + platform + ': ' + (totalFans > 1000000 ? ((Math.floor(totalFans / 100000) / 10.0) + "M") : (totalFans > 1000 ? ((Math.floor(totalFans / 100) / 10.0) + "K") : totalFans)) + ' fans</strong>' + '</p>');
}
$('#artist_span').append(' <small>(' + json.response.fans.total.total + ' fans)</small>');
$('#artist_span').append(' <small>' + json.response.fans.total.total + ' fans</small>');
}
});
}
Expand Down

0 comments on commit 47a8ce6

Please sign in to comment.