NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Big buttons fix
// @copyright 2020, mich939
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Script fixing 'big buttons' feature
// @author mich939
// @match https://*.e-sim.org/*
// @grant none
// @licence MIT
// ==/UserScript==
var pages = document.getElementById("pagination-digg");
var buttons = pages.getElementsByTagName("li");
var links = pages.getElementsByTagName("a");
for (var i = 0, button; button = buttons[i]; i++){
button.style.cssText="font-size: 1.5vw; padding: 0 !important;"
let link = links[i];
link.style.cssText="font-size: 1vw;"
}