// ==UserScript==
// @name Custom Voxiom Style
// @namespace http://tampermonkey.net/
// @version 2.4
// @description Resource Color Changer (For Skin) Also Styles!!
// @author Garuda_ and VoxWilda
// @match *://voxiom.io/
// @grant GM_addStyle
// @license GNU GPLv3
// ==/UserScript==
(function() {
'use strict';
(function () {
const originalSkinURL = "https://voxiom.io/package/cb1d14c1ff0efb6a282b.png";
const skinURL1 = "https://voxiom.io/package/ecca1227c2e0406be225.png";
const skinURL2 = "https://voxiom.io/package/aef55bdd0c3c3c3734f8.png";
const savedGradient = localStorage.getItem('selectedGradient') || "#000000,#808080";
const savedUseOriginalSkin = localStorage.getItem('useOriginalSkin') === 'true';
const savedGradient1 = localStorage.getItem('selectedGradient1') || "#0000FF,#FF00FF";
const savedGradient2 = localStorage.getItem('selectedGradient2') || "#FF0000,#FFFF00";
const savedUseOriginalSkin1 = localStorage.getItem('useOriginalSkin1') === 'true';
const savedUseOriginalSkin2 = localStorage.getItem('useOriginalSkin2') === 'true';
const container = document.createElement("div");
container.style.position = "absolute";
container.style.top = "10px";
container.style.right = "10px";
container.style.padding = "20px";
container.style.backgroundColor = "rgba(0, 0, 0, 0.8)";
container.style.borderRadius = "8px";
container.style.zIndex = "9999";
const greyBox = document.createElement("div");
greyBox.style.backgroundColor = "grey";
greyBox.style.padding = "10px";
greyBox.style.borderRadius = "5px";
greyBox.style.marginBottom = "15px";
greyBox.style.textAlign = "center";
greyBox.style.color = "white";
greyBox.textContent = "GnW Styles";
const instructionText = document.createElement("div");
instructionText.style.fontSize = "14px";
instructionText.style.marginTop = "10px";
instructionText.style.color = "white";
instructionText.textContent = "Click Z to open and close UI";
greyBox.appendChild(instructionText);
container.appendChild(greyBox);
function createCheckboxLabel(text) {
const label = document.createElement("div");
label.textContent = text;
label.style.fontSize = "12px";
label.style.marginBottom = "5px";
label.style.color = "white";
return label;
}
function createGradientPicker(savedGradient, label, useOriginalKey) {
const gradientPickers = savedGradient.split(",");
const startColorPicker = document.createElement("input");
startColorPicker.type = "color";
startColorPicker.value = gradientPickers[0];
startColorPicker.style.display = "block";
const endColorPicker = document.createElement("input");
endColorPicker.type = "color";
endColorPicker.value = gradientPickers[1];
endColorPicker.style.display = "block";
const colorLabel = document.createElement("span");
colorLabel.textContent = label;
colorLabel.style.fontSize = "12px";
colorLabel.style.display = "block";
const toggleOriginalCheckbox = document.createElement("input");
toggleOriginalCheckbox.type = "checkbox";
toggleOriginalCheckbox.checked = localStorage.getItem(useOriginalKey) === 'true';
const checkboxLabel = createCheckboxLabel("Click the box to use original skin");
container.appendChild(colorLabel);
container.appendChild(startColorPicker);
container.appendChild(endColorPicker);
container.appendChild(checkboxLabel);
container.appendChild(toggleOriginalCheckbox);
return { startColorPicker, endColorPicker, toggleOriginalCheckbox };
}
const defaultSkin = createGradientPicker(savedGradient, "Survival/FFA/BR Skin Gradient", "useOriginalSkin");
const blueSkin = createGradientPicker(savedGradient1, "Sapphire Skin Gradient", "useOriginalSkin1");
const redSkin = createGradientPicker(savedGradient2, "Ruby Skin Gradient", "useOriginalSkin2");
document.body.appendChild(container);
function createGradientTexture(startColor, endColor) {
const canvas = document.createElement("canvas");
canvas.width = 512;
canvas.height = 512;
const ctx = canvas.getContext("2d");
const gradient = ctx.createLinearGradient(0, 0, canvas.width, canvas.height);
gradient.addColorStop(0, startColor);
gradient.addColorStop(1, endColor);
ctx.fillStyle = gradient;
ctx.fillRect(0, 0, canvas.width, canvas.height);
return canvas;
}
const originalTexImage2D = WebGLRenderingContext.prototype.texImage2D;
WebGLRenderingContext.prototype.texImage2D = function (...args) {
const source = args[5];
if (source instanceof HTMLImageElement && source.src === originalSkinURL) {
const useOriginalSkin = defaultSkin.toggleOriginalCheckbox.checked;
if (useOriginalSkin) {
return originalTexImage2D.apply(this, args);
} else {
const startColor = defaultSkin.startColorPicker.value;
const endColor = defaultSkin.endColorPicker.value;
const gradientTexture = createGradientTexture(startColor, endColor);
originalTexImage2D.call(this, args[0], args[1], args[2], args[3], args[4], gradientTexture);
return;
}
} else if (source instanceof HTMLImageElement && source.src === skinURL1) {
const useOriginalSkin1 = blueSkin.toggleOriginalCheckbox.checked;
if (useOriginalSkin1) {
return originalTexImage2D.apply(this, args);
} else {
const startColor = blueSkin.startColorPicker.value;
const endColor = blueSkin.endColorPicker.value;
const gradientTexture = createGradientTexture(startColor, endColor);
originalTexImage2D.call(this, args[0], args[1], args[2], args[3], args[4], gradientTexture);
return;
}
} else if (source instanceof HTMLImageElement && source.src === skinURL2) {
const useOriginalSkin2 = redSkin.toggleOriginalCheckbox.checked;
if (useOriginalSkin2) {
return originalTexImage2D.apply(this, args);
} else {
const startColor = redSkin.startColorPicker.value;
const endColor = redSkin.endColorPicker.value;
const gradientTexture = createGradientTexture(startColor, endColor);
originalTexImage2D.call(this, args[0], args[1], args[2], args[3], args[4], gradientTexture);
return;
}
}
return originalTexImage2D.apply(this, args);
};
function saveGradient(startPicker, endPicker, key) {
const gradient = `${startPicker.value},${endPicker.value}`;
localStorage.setItem(key, gradient);
}
defaultSkin.startColorPicker.addEventListener("input", function () {
saveGradient(defaultSkin.startColorPicker, defaultSkin.endColorPicker, "selectedGradient");
});
blueSkin.startColorPicker.addEventListener("input", function () {
saveGradient(blueSkin.startColorPicker, blueSkin.endColorPicker, "selectedGradient1");
});
redSkin.startColorPicker.addEventListener("input", function () {
saveGradient(redSkin.startColorPicker, redSkin.endColorPicker, "selectedGradient2");
});
let isVisible = true;
document.addEventListener('keydown', function (event) {
if (event.key.toLowerCase() === 'z') {
container.style.display = isVisible ? "none" : "block";
isVisible = !isVisible;
instructionText.style.display = isVisible ? 'block' : 'none';
}
});
})();
GM_addStyle(`
/* WRITTEN BY NACKOO AND WILDA */
* {
text-decoration: none;
}
/* Hide unwanted elements */
div[id^="voxiom-io"] {
display: none;
}
::-webkit-scrollbar {
display: block !important; /* Show scrollbar */
}
/* Ensures relevant elements like chat, dropdowns and icons stay visible */
a[href="https://discord.gg/GBFtRcY"],
a[href="https://cuberealm.io"],
.hCYBep,
.iiRiSL,
.cSKUzy,
.dcWybl * {
display: block !important; /* Ensure visibility of these elements */
}
.vox-dropdown .Dropdown-menu {
max-height: 400px;
}
.bNczYf {
background-size: cover !important;
filter: grayscale(0%) blur(0px);
padding: 10px;
margin: -10px;
}
.jzxTWp,
.evngGB {
z-index: 7;
}
/* Ensure borders and backgrounds are correctly removed */
.gIfJjz,
.cxSTIe,
.ekCLHU,
.eFhDSk,
.eQfmzq * {
border: none !important;
background: none !important;
}
.hPoIsr,
.iSzErR {
background: none !important;
border: none !important;
width: 50px;
height: 50px;
}
.lpfJAq *,
.lpdfTz * {
max-height: 400px !important;
}
.eQfmzq {
position: absolute;
top: 0;
left: 200px;
}
.faeaXa {
filter: drop-shadow(0 0 17px rgba(var(--inv), 1));
}
.faeaXa[style*="rgb(149, 165, 166)"] {
--inv: 149, 165, 166;
}
.faeaXa[style*="rgb(46, 204, 113)"] {
--inv: 46, 204, 113;
}
.faeaXa[style*="rgb(52, 152, 219)"] {
--inv: 52, 152, 219;
}
.faeaXa[style*="rgb(155, 89, 182)"] {
--inv: 155, 89, 182;
}
.faeaXa[style*="rgb(241, 196, 15)"] {
--inv: 241, 196, 15;
}
.faeaXa[style*="rgb(211, 84, 0)"] {
--inv: 211, 84, 0;
}
img[src="/./package/ea55824826de52b7ccc3.png"] {
margin-bottom: 20px;
width: auto;
height: 200px;
filter: drop-shadow(0 0 20px black);
pointer-events: none;
}
.kqMamr[style*="font-size: 10px"],
.dZDPlS * {
font-size: 12px !important;
}
.ekaCUa {
height: 100%;
}
.bhZAzR {
color: rgb(14, 14, 14);
}
.gJPUVb {
color: rgb(14, 14, 14);
}
.cJoQGw {
background: radial-gradient(circle, rgba(var(--market), 0.3), rgba(var(--market), 0.1));
}
.cJoQGw[style*="rgb(255, 255, 255)"] {
--market: 255, 255, 255;
}
.cJoQGw[style*="rgb(128, 156, 255)"] {
--market: 128, 156, 255;
}
.cJoQGw[style*="rgb(180, 99, 255)"] {
--market: 180, 99, 255;
}
.cJoQGw[style*="rgb(255, 84, 224)"] {
--market: 255, 84, 224;
}
.cJoQGw[style*="rgb(230, 126, 34)"] {
--market: 230, 126, 34;
}
.cJoQGw[style*="rgb(255, 66, 101)"] {
--market: 255, 66, 101;
}
.cJoQGw[style*="rgb(255, 224, 99)"] {
--market: 255, 224, 99;
}
.cxWTDe {
background: rgba(0, 0, 0, 0.65) !important;
border-radius: 10px;
}
/* Specific adjustments for the chat visibility */
.dcWybl, .dcWybl * {
display: block !important; /* Ensure chat content is visible */
visibility: visible !important;
}
.sc-lbCmg,
.sc-jwRhZi,
.sc-bBHxTw,
.sc-giYglK,
.sc-pVTFL,
.sc-crHmcD,
.sc-fKVqWL,
.sc-iJKOTD,
#voxiom-io_970X250_1,
.sc-hKUcmH
{
display: none;
}
.sc-jHwEXd {
border-radius: 10px;
}
.sc-czvZiG {
border-radius: 10px;
}
.sc-fpyFWH {
border-radius: 10px;
background-color: rgba(255, 255, 255, 0.5); px solid rgba(255, 255, 255, 0.7);
}
.sc-hPmGNk {
display: none;
}
.sc-OVzLa {
position: relative; /* Position the button's content relative to the new text */
color: transparent; /* Hide the original text */
}
.sc-OVzLa::after {
content: "Don't Click This, You don't deserve it.";
position: absolute;
top: 0;
left: 0;
color: white;
font-size: 20px;
width: 100%;
height: 100%;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}
.sc-uWCef::after {
content: "You really took this long?? 🤦♂️";
position: absolute;
top: 0;
left: 0;
color: white;
font-size: 18px;
width: 100%;
height: 100%;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}
.sc-kTwdzw,
.sc-cgLTVH {
transition: background 0.3s ease, color 0.3s ease; /* Smooth transition for child elements */
}
.sc-eYQueS {
background: linear-gradient(to right, #FF0000, #8B0000);
opacity: 1.0;
}
.sc-chSlKD {
background: linear-gradient(to right, #0000FF, #00008B);
opacity: 1.0;
}
.sc-kTwdzw:hover,
.sc-cgLTVH:hover {
background: rgba(173, 216, 230, 0.3); /* Light blue with low opacity for children */
color: #333; /* Optional: change text color for visibility, adjust as needed */
}
.sc-cgLTVH:hover {
background: linear-gradient(to right, rgba(173, 216, 230, 0.3), rgba(173, 216, 230, 0.3)); /* Light blue gradient with low opacity */
}
.sc-kBysnm {
background: linear-gradient(to right, #00c9ff, #92fe9d);
}
.sc-fjHZBf,
.sc-jRyozQ {
color: black;
}
.sc-hrJsxi {
background-color: grey;
border-radius: 10px;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
.sc-ibSMNl {
margin-bottom: 40px;
margin-top: 50px;
}
.sc-eIMkDA {
border-radius: 12px;
}
.sc-eIMkDA:nth-child(2) .sc-gOMZtR {
font-size: 15px;
}
.sc-cbTmKc {
background: radial-gradient(circle, rgba(0, 123, 255, 0.5) 0%, rgba(0, 62, 124, 0.7) 100%);
}
.sc-dCKSNi {
background: radial-gradient(circle, rgba(255, 0, 0, 0.5) 0%, rgba(139, 0, 0, 0.7) 100%);
}
.sc-LMKsT {
background: radial-gradient(circle, rgba(169, 169, 169, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.sc-hgJWpk {
color: #001f3d;
}
.sc-eIMkDA:nth-child(2) .sc-eGAbHy {
margin-top: 5px;
}
.sc-eIMkDA .sc-cCqACh {
border-radius: 12px;
width: 50px;
height: 50px;
}
.sc-eIMkDA .sc-eGAbHy {
border-radius: 12px;
width: 50px;
height: 50px;
}
.sc-eIMkDA.sc-imtoHe {
font-size: 19px;
}
.sc-llYSUQ {
font-size: 17px;
}
*{
font-family: cursive
}
.sc-lbCmg {
color: black;
}
.sc-lbCmg {
visibility: visible !important;
display: block !important;
}
.sc-hnCQzQ {
border-radius: 12px;
}
.sc-efaPnb:nth-child(1),
.sc-efaPnb:nth-child(2),
.sc-ieqYjd,
.sc-cgLHwo
{
background: #FF0000;
border: 1px solid white;
}
.sc-efaPnb:nth-child(1):hover,
.sc-efaPnb:nth-child(2):hover,
.sc-ieqYjd:hover,
.sc-cgLHwo:hover
{
background: transparent;
}
.sc-kLwhqv::before {
content: "Hello Fellow GNW style user! We hope you love this style for each game you play!! More Styles to come soon!!! If you have any suggestions please give us feedback on Greasyfork!";
display: block;
color: #11;
font-size: 16px;
font-family: cursive;
white-space: pre-line;
}
.sc-sc-eoHXOn {
background: linear-gradient(to right, #003d8a, #3366cc);
}
.sc-eLwHnm {
background-color: transparent !important;
}
.sc-jOxtWs {
background: linear-gradient(to right, #ffcccc, #ff6666);
}
.sc-bxYNtK:nth-child(1),
.sc-kBysnm {
background: linear-gradient(to right, rgba(0, 255, 255, 0.7), rgba(0, 255, 255, 0.6));
border: 1px solid white;
}
.sc-wAsCI:nth-child(2) > .sc-fpGCtG {
display: none;
}
.sc-kBysnm {
border-color: transparent;
}
.sc-wAsCI:nth-child(1) > .sc-fpGCtG {
display: none;
}
.sc-iQLbEm::after {
content: "Did you really just die??";
display: block; /* Optional: Ensures it appears as a new line */
color: red; /* Optional: Set text color */
font-size: 16px; /* Optional: Set text size */
margin-top: 10px; /* Optional: Adds spacing */
}
.sc-bRcdvP:nth-child(3) {
margin-top: 10px;
}
.sc-bRcdvP:nth-child(2) {
margin-top: 10px;
}
.sc-cgLHwo {
margin-top: 2px;
}
.sc-efaPnb:nth-child(2) {
margin-left: 5px;
}
.sc-bNoLzS {
border: 1px solid white;
}
.sc-kHOZwM {
display: none;
}
.bNczYf {
background-image: url('https://i.imgur.com/fEy1M3h.png');
}
.sc-bxYNtK {
border-radius: 12.5px;
}
.sc-inrDdN {
border-radius: 12.5px;
}
#voxiom-io_300X250_1 {
border-radius: 12.5px;
}
.sc-kITQLZ {
border-radius: 12.5px;
}
.sc-efaPnb:nth-child(1) {
border-radius: 7px;
}
.sc-efaPnb:nth-child(2) {
border-radius: 7px;
}
.sc-ieqYjd {
border-radius: 7px;
}
.sc-cgLHwo {
border-radius: 7px;
}
.sc-bNoLzS {
border-radius: 7px;
}
.sc-PDIEN {
border-radius: 7px;
}
#voxiom-io_728x90_1 {
display: none;
}
.sc-kITQLZ {
position: absolute;
bottom: 0;
}
.sc-gijNBN > .sc-eIMkDA {
border-radius: 12.5px;
border: 1px solid grey;
margin-bottom: 3px;
}
.sc-kTLmzF {
border-radius: 12px;
font-size: 19px;
}
.sc-ioFxDg {
border-radius: 12px;
height: 27px;
}
.sc-jOxtWs {
border-radius: 12px;
font-size: 15px;
}
.sc-iBjLOp > div:nth-child(2) {
font-size: 20px;
}
.sc-gfXEFL {
border-radius: 12.5px;
padding-top: 25px;
}
.sc-bcuSnp {
border-radius: 12.5px;
}
.sc-dHxeTU {
font-siZe: 19px;
border-radius: 12.5px;
}
.sc-jQbROH {
font-siZe: 19px;
border-radius: 12.5px;
}
.sc-bxJtlY {
border-radius: 12.5px;
}
.sc-lbJDnc:nth-child(2) {
margin-top: 30px;
border-radius: 12.5px;
font-size: 18px!important;
.sc-bxJtlY {
font-size: 25px;
width: 50px;
height: 50px;
margin-top: 5px;
}
.sc-lbJDnc:nth-child(3) {
border-radius: 12.5px;
font-size: 19px;
height: 117px;
}
.sc-dGXKQl {
margin-bottom: 3px;
}
.sc-gnYOKe {
font-size: 17px;
border-radius: 12.5px;
}
.sc-dlUKyu:nth-child(2) > .sc-eIMkDA {
display: none;
}
.sc-lheXJl {
border-radius: 12.5px;
height: 47px;
}
.sc-jOxtWs {
border-radius: 12.5px;
height: 26px;
font-size: 15px;
}
.sc-jOxtWs {
height: 27px;
font-size: 19px;
}
.sc-kTLmzF {
border: 1px solid white;
}
.sc-cCqACh {
background: none;
}
.sc-gijNBN:nth-child(2) .sc-gOMZtR {
font-size: 15px;
}
.sc-gijNBN:nth-child(2) .sc-eGAbHy {
margin-top: 5px;
}
.sc-gijNBN .sc-eGAbHy {
border-radius: 12px;
width: 50px;
height: 50px;
}
.sc-gijNBN .sc-imtoHe {
font-size: 19px;
}
.sc-jECdDC {
display: none;
}
.sc-gFkHhu {
display: none;
}
.sc-bcuSnp {
padding-top: 27px;
}
.sc-ftuxfO {
border-radius: 12.5px;
}
.sc-dHxrtn {
border-radius: 7px;
}
.sc-bJijCA {
border-top-left-radius: 7px;
border-bottom-left-radius: 7px;
}
.sc-jOxtWs {
height: 30px;
border-radius: 7px;
}
.sc-bcGyXE:nth-child(2) {
border-top-right-radius: 12.5px;
border-bottom-right-radius: 12.5px;
}
.sc-jEDbyf {
border-radius: 12.5px;
}
.sc-cLqoAx {
border-radius: 12.5px;
}
.sc-dlUKyu .sc-gulkZw {
background: none;
}
.sc-cLqoAx .sc-dBGsNe {
background: none;
}
.sc-bVMxNJ > .sc-cgLTVH {
font-size: 19px;
}
.sc-kTwdzw {
font-size: 19px;
margin-left: -15px;
}
.sc-ejUSkt {
font-size: 15px;
}
.sc-hWfKGx:nth-child(2) {
font-size: 15px;
margin-top: 15px;
}
.sc-hWfKGx:nth-child(3) {
font-size: 15px;
margin-top: 15px;
}
.sc-hilbJV {
font-size: 19px;
}
.sc-ekMTzm {
font-size: 17px;
}
.sc-fxoWpM > .sc-ezDxBL {
font-size: 18px;
}
.sc-fxoWpM .sc-gJDHPX {
text-decoration: none;
}
.sc-isIVbZ {
display: none;
}
.sc-ljHdwo {
position: absolute;
right: 30px;
top: 25px;
}
.sc-ctrcbf {
border-radius: 12.5px;
padding-top: 27px;
}
.sc-lcepkR {
font-size: 19px;
}
.sc-dPiLbb {
border-radius: 7px;
}
.sc-ehCJOs .sc-hUpaCq {
border-radius: 12.5px;
}
.sc-gWXbKe {
border-radius: 12.5px;
}
.sc-gWXbKe > .sc-hiCibw {
border-bottom-right-radius: 12.5px;
border-bottom-left-radius: 12.5px;
}
.sc-iPkRvG {
border-radius: 12.5px;
}
.sc-hQqMrg {
display: none;
}
.sc-iAKWXU {
border-radius: 12.5px;
font-size: 19px;
}
.sc-gWXbKe > .sc-cidDSM {
font-size: 16px;
}
.sc-gWXbKe span {
font-size: 16px;
}
.sc-NqARw {
border-radius: 12px;
}
.sc-jlObWd > .sc-LerVu {
font-size: 19px;
}
.sc-jlObWd .sc-cVeCjG {
font-size: 16px;
}
.sc-jUosCB {
font-size: 19px;
}
.sc-jUosCB .sc-GEbAx {
font-size: 17px;
}
.sc-gUQvok > .sc-fIosxK {
font-size: 19px;
}
.sc-gUQvok > .sc-fXeWAj {
display: none;
}
.sc-gUQvok .sc-fmciRz {
font-size: 17px;
}
.sc-dFtzxp {
font-size: 19px;
}
.sc-dFtzxp > .sc-gIDmLj {
font-size: 17px;
}
.sc-bilyIR > .sc-eGPXGI {
font-size: 19px;
}
.sc-bilyIR .sc-xiLah {
font-size: 17px;
}
select {
font-size: 17px;
}
.sc-bilyIR input {
height: 33px;
}
.sc-bilyIR:nth-child(6) input,
.sc-bilyIR:nth-child(7) input{
width: 17px;
height: 17px;
}
.sc-gUQvok:nth-child(5) input,
.sc-gUQvok:nth-child(6) input{
width: 17px;
height: 17px;
}
.sc-jUosCB:nth-child(9) input,
.sc-jUosCB:nth-child(10) input,
.sc-jUosCB:nth-child(11) input,
.sc-jUosCB:nth-child(12) input {
width: 17px;
height: 17px;
}
.sc-fXEqDS:nth-child(7) input {
height: 33px;
}
.sc-jWUzzU {
display: none;
}
.sc-fXEqDS:nth-child(1) {
margin-bottom: 0;
}
.sc-fXEqDS > .sc-FNXRL {
font-size: 19px;
}
.sc-fXEqDS .sc-lkgTHX {
font-size: 17px;
}
.sc-dVNjXY {
border-radius: 12.5px;
}
.sc-jtXEFf {
border-radius: 12.5px;
}
.sc-jGOmzE {
border-style: 2px solid;
}
.sc-iQLbEm {
border-radius: 10px;
}
.sc-iQLbEm::after {
content: ". Get Good Lmao Gtfo"
}
.sc-eWfVMQ {
border-radius: 7px;
margin-bottom: 13px;
font-size: 19px;
}
.sc-jEDbyf > .sc-fKeRlk {
font-size: 19px;
}
.sc-auqbC {
display: none;
}
.sc-hGNApp {
border-radius: 12.5px;
}
.sc-jtdnna {
border-radius: 12.5px;
}
.sc-cLqoAx .sc-dXNTeZ {
font-size: 19px;
}
.sc-cLqoAx .sc-jFkmsu {
font-size: 19px;
}
.sc-cLqoAx .sc-hudTXT {
font-size: 19px;
}
.sc-cLqoAx .sc-dBGsNe {
font-size: 19px;
}
.sc-dlUKyu .sc-eGAbHy {
width: 50px;
height: 50px;
border-radius: 7px;
}
.sc-dlUKyu > .sc-eIMkDA {
border-radius: 12.5px;
}
.sc-dlUKyu .sc-imtoHe {
font-size: 17px;
}
.sc-dlUKyu .sc-gulkZw {
font-size: 17px;
}
.sc-ehCJOs .sc-nVkyK {
border-bottom-left-radius: 12.5px;
border-bottom-right-radius: 12.5px;
}
.sc-gUQvok {
margin-bottom: 10px;
}
.sc-gUQvok:nth-child(5) {
margin-bottom: 20px;
}
.sc-dvXDii {
border-radius: 12.5px;
}
.sc-eoHXOn{
margin-bottom: 7px;
}
.sc-gijNBN .sc-fYIQDW {
font-size: 19px;
}
.sc-eLwHnm {
border-radius: 12.5px;
}
.sc-iQLbEm {
border: none;
background: none;
}
.image-bottom-right {
position: fixed;
bottom: 10px;
right: 10px;
width: 100px;
height: auto;
z-index: 9999;
}
`);
if (window.location.hostname === "voxiom.io") {
const img = document.createElement("img");
img.src = "https://i.imgur.com/WKYmgNG.png";
img.className = "image-bottom-right";
document.body.appendChild(img);
}
})();