LoginSignup
7
3

More than 5 years have passed since last update.

SICPを読みやすくするBookmarklet

Last updated at Posted at 2017-04-05

プログラムやコンピューティングを基本から学びたいと思い、html版SICPを見に行ったら思いの外読みにくかったので、簡単にスタイルを当てるbookmarkletを書いた。

javascript:(function(){ document.querySelector('body').style.fontFamily = "'Helvetica Neue', Helvetica, Arial, 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ Pro W3',Verdana, Roboto, 'メイリオ', Meiryo, 'MS Pゴシック', sans-serif";document.querySelector('body').style.fontWeight = 300;document.querySelector('body').style.margin = '0 auto';document.querySelector('body').style.lineHeight = '2rem';document.querySelector('body').style.padding = '0 8px'; document.querySelector('body').style.maxWidth = '700px';})()

これが

スクリーンショット 2017-04-05 12.00.47.png

こうなる。

スクリーンショット 2017-04-05 12.01.06.png

7
3
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
3