阮一峰ES6入门样式优化

fontSize Changed

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

 // ==UserScript==
// @name         阮一峰ES6入门样式优化 
// @version      0.2
// @namespace    http://tampermonkey.net
// @description  fontSize Changed
// @author       Dogfish
// @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";
$('#content code ').css({
 "fontSize": "1rem"
})
 
})();