NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Lolzteam Theme
// @namespace https://openuserjs.org/
// @version 1.001
// @description Кастомная расширенная тема с фоном.
// @copyright 2019, hydrugz (https://lx64.best)
// @author hydrugz. https://lolzteam.online/members/2238944/
// @include http://lolzteam.online/*
// @include https://lolzteam.online/*
// @include http://*.lolzteam.online/*
// @include https://*.lolzteam.online/*
// @run-at document-start
// @grant none
// @license MIT
// ==/UserScript==
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle('body { opacity: 0.9; background-image: url("https://images.wallpaperscraft.ru/image/gory_sneg_domik_155439_3648x5472.jpg"); background-attachment: fixed; background-position: center; background-size: cover;}');
addGlobalStyle('#headerMover { width: 100%; padding-left: 15px; padding-right: 15px; }')
addGlobalStyle('.cd-top.cd-is-visible { display: none }')
addGlobalStyle('#QuickReply { width: 100% !important }')
addGlobalStyle('#navigation .pageContent { width: 100% !important }')
addGlobalStyle('.navTabs .publicTabs { padding-left: 15px !important }')
addGlobalStyle('.navTabs .account-links { padding-right: 15px !important }')