sql.ru customizer

changing sql.ru styles a bit

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         sql.ru customizer
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  changing sql.ru styles a bit
// @author       Timur Akhmadeev [email protected]
// @match        https://www.sql.ru/*
// @grant        GM_addStyle
// @run-at       document-start
// ==/UserScript==

GM_addStyle(`.forumTable {
    width: 100%;
    border-collapse: collapse;
    font: 15px Arial,Verdana;
}`);

GM_addStyle(`a {
    color: #000000;
}`);

GM_addStyle(`a:visited {
    color: #777;
}`);

GM_addStyle(`a.forumLink {
    color: #000000;
    font: 700 15px Arial,Verdana;
}`);

GM_addStyle(`a.forumLink:visited {
    color: #777;
    font: 700 15px Arial,Verdana;
}`);


GM_addStyle(`.forumTable tr>td {
    margin: 0;
    padding: 3px;
    border: 1px solid #d2d3dd;
    background-color: #eee;
}`);

GM_addStyle(`.msgBody a {
    color: #202020;
}`);