阮一峰ES6入门样式优化

fontSize Changed

目前為 2019-04-09 提交的版本,檢視 最新版本

 // ==UserScript==
// @name         阮一峰ES6入门样式优化 
// @version      0.2.3
// @namespace    http://tampermonkey.net
// @description  fontSize Changed
// @author       SatanFaker
// @match        http://*.ruanyifeng.com/*
// @grant        none
// ==/UserScript==
// @run-at document-end



(function () {
 
    var  content=document.getElementById("content")
    content.style.width = "70%";
    content.style.margin  = " 0 auto";
    $(function() {
        $('#contebt code').css({
            "fontSize":"0.9rem"
        })
    });


})();