Created
October 31, 2012 14:52
-
-
Save tricknotes/3987465 to your computer and use it in GitHub Desktop.
Gist を印刷する時に良い感じのレイアウトにする
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For printout https://gist.github.com | |
// DOM | |
$('#header').remove(); | |
$('#repos').remove(); | |
$('.secondary').remove(); | |
$('.meta').remove(); | |
$('#footer').remove(); | |
$('.push').remove(); | |
$('#comments').remove(); | |
$('#delete_link').remove(); | |
// Style | |
$('link[media=screen]').attr('media', 'all'); | |
$('.main').css('width', '100%'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment