The light theme for Linux.org.ru without login to the site.
目前為
// ==UserScript==
// @name Light Linux.org.ru
// @description The light theme for Linux.org.ru without login to the site.
// @description:ru Светлая тема для сайта Linux.org.ru без логина на сайт.
// @namespace https://www.tampermonkey.net/
// @match https://www.linux.org.ru/*
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js
// @version 1.3
// @author Nikolay Raspopov
// @license MIT
// @icon https://www.google.com/s2/favicons?domain=linux.org.ru
// @grant none
// @run-at document-end
// ==/UserScript==
(function() {
'use strict';
var $ = window.jQuery;
$('html, body, h1, h2, h3, h4, h5, #sitetitle, .group-item, .group-author, .tracker-item, .tracker-last, .tracker-count, .tracker-src, .tag, code, .code, .msg, .page-number, .infoblock, .boxlet, .btn, #whois_userpic, #bd thead').css({'background-color':'#ffffff','color':'#000000'});
$('html, body').css({'font-size':'1em','font-family':'"Segoe UI", arial, sans-serif'});
$('.sign, .reply, .title, .nav').css({'font-size':'0.8em'});
$('.sign, .reply').css({'color':'#a0a0a0','display':'inline','margin':'0px'});
//$('.hideon-phone').css({'display':'none'});
$('.page-number, .infoblock, .btn, .msg, .group-item, .tracker-item, .message-table td, .photo').css({'border':'1px solid #C4E1FF','border-radius':'0.3em'});
$('article, .msg').css({'padding':'0.25em'});
$('a').css({'color':'#2D5B89','text-decoration':'none'});
$('.photo').attr('width','50px');
$('.photo').attr('height','50px');
$('.photo').css({'height':'50px','width':'50px','filter':'grayscale(0.7)'});
$('.userpic').css({'height':'60px','width':'60px'});
$('#yandex_rtb').remove();
$('#interpage').remove();
$('noscript').remove();
$('script').remove();
})();