Panthur Hosting Australia Dark Mode Night Theme

Panthur Hosting Australia Dark Mode Night Theme - simple grey red

当前为 2018-08-31 提交的版本,查看 最新版本

// ==UserScript==
// @name        Panthur Hosting Australia Dark Mode Night Theme
// @namespace   english
// @description Panthur Hosting Australia Dark Mode Night Theme - simple grey red 
// @include     http*://*members.panthur.com.au *
// @version     1.1
// @run-at document-start
// @grant       GM_addStyle
// ==/UserScript==

 

var style = document.createElement('style');
style.type = 'text/css';

style.innerHTML = '       .page_main_container { /*\n*/    background-color: #292929 !important;/*\n*/}.white_block {/*\n*/    /*\n*/    background-color: #b9b9b9;/*\n*/   /*\n*/}.form-group input:not([type=checkbox]):not([type=radio]), .form-group select, .form-group .form-control {/*\n*/    /*\n*/    color: #333333 !important;/*\n*/    /*\n*/    background-color: gainsboro !important;/*\n*/    border: 1px solid #797979 !important;/*\n*/  /*\n*/}#searchresults div:last-of-type {/*\n*/    border-bottom: 1px solid #1d1d1d78;/*\n*/}#searchresults {/*\n*/   /*\n*/    background-color: #a2a2a2;/*\n*/    border-left: 1px solid #cccccc40;/*\n*/    border-right: 1px solid #cccccc36;/*\n*/    /*\n*/}.no_records {/*\n*/    border: 1px solid #676767;/*\n*/    background: #a2a2a2;/*\n*/     /*\n*/}       ';

document.getElementsByTagName('head')[0].appendChild(style);