1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
(function() { const md = { rules:'', sheet:null, primary_color:'#1aad19', create_css(){ let head = document.head || document.getElementsByTagName('head')[0]; let style = document.createElement('style'); style.type = 'text/css'; head.appendChild(style); this.sheet = style.sheet ||style.styleSheet; }, add_rules(rules=null,index=0){ !this.sheet && this.create_css(); this.sheet.insertRule(rules, index); }
}; console.log('微信主题'); md.add_rules("*{transition:300ms!important;font-family:'宋体'}"); md.add_rules('.mod_default_box {box-shadow: 0 2px 12px 4px rgba(0,0,0,0.05)!important;border-radius:20px}'); md.add_rules('.menu_title.selected {color: #fff!important;display:inline!important}'); md.add_rules('.menu_title.selected a{color: #ffffff!important}'); md.add_rules('.side_l .col_side{border-right:none!important}'); md.add_rules('.menu_title.selected .menu_name{padding:10px!important;background:#1aad19!important;box-shadow: 0 2px 12px 4px rgba(0,0,0,0.1)!important;border-radius:25px;}'); })();
|