Created
December 26, 2011 14:17
-
-
Save chaosong/1521242 to your computer and use it in GitHub Desktop.
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
// ==UserScript== | |
// @name my calepin style | |
// @namespace | |
// @description fix max-width of <p> and font-size of code block | |
// @include http://chaos.calepin.co/* | |
// @require http://code.jquery.com/jquery-1.6.2.min.js | |
// ==/UserScript== | |
$("article p, article ol, article li").css("max-width", "748px"); | |
$(".codehilite *, .gist *").css("font-size", "9pt"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment