Skip to content

Instantly share code, notes, and snippets.

@chaosong
Created December 26, 2011 14:17
Show Gist options
  • Save chaosong/1521242 to your computer and use it in GitHub Desktop.
Save chaosong/1521242 to your computer and use it in GitHub Desktop.
// ==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