Last active
April 11, 2016 05:20
-
-
Save sublee/2bb8e6055fd814bd5bc5 to your computer and use it in GitHub Desktop.
Classeur modification for Korean
This file contains 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
@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; } |
This file contains 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 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 <[email protected]> | |
// @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