Light Blue CrossHair

stuff

// ==UserScript==
// @name         Light Blue CrossHair
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  stuff
// @author       Cluck36
// @match        https://shellshock.io/
// @grant        none
// ==/UserScript==

(function () {
    const addScript = () => {
        document.title="Shell"
        document.head.innerHTML += `<style>

.crosshair {
	position: absolute;
	transform-origin: 50% top;
	top: 50%;
	border: solid 0.05em #478ef8;
	height: 0.8em;
	margin-bottom: 0.12em;
	opacity: 0.7;
}

.crosshair.normal {
	left: calc(50% - 0.15em);
	background: #478ef8;
	width: 0.3em;
}

.crosshair.powerful {
	left: calc(50% - 0.25em);
	background: red;
	width: 0.5em;
}


</style>`
    }
    document.body ? addScript() : document.addEventListener("DOMContentLoaded", e => addScript());
})();