Make Current Run Button stick to top - gamesdonequick.com

28/05/2023, 20:06:05

// ==UserScript==
// @name        Make Current Run Button stick to top - gamesdonequick.com
// @namespace   Violentmonkey Scripts
// @match       https://gamesdonequick.com/schedule/43
// @grant       none
// @version     1.0
// @author      aJourneyman
// @description 28/05/2023, 20:06:05
// @license MIT
// ==/UserScript==

function addCss(cssString) {
    var head = document.getElementsByTagName('head')[0];
    var newCss = document.createElement('style');
    newCss.type = "text/css";
    newCss.innerHTML = cssString;
    head.appendChild(newCss);
}

addCss("p.text-center {position: -webkit-sticky; position: sticky; top: 0; } ");