Skip to content

Instantly share code, notes, and snippets.

@sublee
Last active April 11, 2016 05:20
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sublee/2bb8e6055fd814bd5bc5 to your computer and use it in GitHub Desktop.
Save sublee/2bb8e6055fd814bd5bc5 to your computer and use it in GitHub Desktop.
Classeur modification for Korean
@import url(//fonts.googleapis.com/earlyaccess/kopubbatang.css);
@import url(//fonts.googleapis.com/earlyaccess/nanumgothiccoding.css);
.editor__inner, .preview__inner, .navbar__inner,
.file-entry__name, .folder-entry__inner-1, .toc-tab,
input { font-family: "KoPub Batang", serif; }
.editor .code, .editor .pre, .editor .table, .preview code
{ font-family: 'Nanum Gothic Coding', monospace; }
.editor .pre { display: inline-block; }
.editor .deflist { display: block; padding-left: 1em; }
.editor .deflist .term { margin-left: -1em; }
.editor-layout .frame-inner { background-color: #fff; }
// ==UserScript==
// @name Classeur modification for Korean
// @version 0.0.1
// @namespace http://sub/classeur-ko.user.js
// @description Modifies Classeur stylesheet for Korean.
// @match https://app.classeur.io/*
// @copyright 2016, Heungsub Lee <sub@subl.ee>
// @license Public Domain
// ==/UserScript==
var style = document.createElement('style');
style.innerHTML = '@import url(https://rawgit.com/sublee/' +
'2bb8e6055fd814bd5bc5/raw/classeur-ko.css);';
document.head.appendChild(style);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment