Greasy Fork

XZ Social Club

a new look for venge social club

目前为 2025-01-21 提交的版本。查看 最新版本

// ==UserScript==
// @name         XZ Social Club
// @namespace    http://tampermonkey.net/
// @version      1.0.0
// @description  a new look for venge social club
// @author       Moka
// @match        https://social.venge.io/*
// @icon         https://i.postimg.cc/CMm2Tk4T/logo-1.png
// @license      MIT
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';

    GM_addStyle(`

    .logo {
    height: 60px;
    top: 4.2vh;
    }

    .header {
    border-radius: 4vh;
    background: #350a0a;
    }

    body {
    background: url('https://i.postimg.cc/k5hrmH8S/Untitled-1.png');
    }

    .level {
    text-shadow: 0px 1px 2px #000;
    background: url('https://i.postimg.cc/J4jpqFzq/Level-Icon-2.png');
    }

    .menu li, .menu a {
    color: #ffffff;
    font-family: cursive;
    }

    body{
    font-family: cursive;
    }

    .stat-card {
    background: #5f3e3e;
    color: #fff;
    float: right;
    width: 90px;
    height: 60px;
    text-align: center;
    margin-left: 10px;
    border-radius: 15px;
    box-sizing: border-box;
    }

    .profile-actions ul li, .clans-actions ul li {
    margin-bottom: 10px;
    color: #fe2929;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    }

    .content{
    border-radius: 4vh;
    }

    .darkmode .content{
    background: #161515;
    }

    .stats-col li {
    background: #5f3e3e;
    color: #fff;
    padding: 7px 15px;
    border-radius: 24px;
    margin-bottom: 10px;
    }

    .stats-col li:nth-child(even) {
    background: #5f3e3e;
    }

    .link a {
    color: #fe2929 !important;
    }

    .sidebar li.active, .sidebar li.active > a {
    background: #fe2929;
    color: #fff;
    }

    .sidebar li{
    border-radius: 25px;
    }

    .market-item .price{
    background: #fe2929;
    }

    .search-icon{
    background: #fe2929;
    }

    button, a.button {
    background-color: #7c2323;
    border: none;
    border-radius: 25px;
    color: #fff;
    box-shadow: 0px 0.05vw 0.2vw rgb(255 255 255 / 40%);
    padding: 0.4vw 0.9vw;
    font-size: 0.8vw;
    border-top: solid 1px rgba(255, 255, 255, 0.1);
    cursor: pointer;
    outline: none;
    white-space: nowrap;
    font-weight: bold;
    font-size: 18px;
    font-family: cursive;
    }

    .select-skin-box .skin-box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 225px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px #c7c7c7;
    background: rgb(249 59 59 / 85%);
    border: 2px solid #fe2929;
    transform: scale(1, 1);
    transition: all 0.2s ease;
    cursor: pointer;
    overflow: hidden;
    }

    .trade-box:after {
    content: "";
    position: absolute;
    width: 55px;
    height: 55px;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    background: url(https://i.postimg.cc/GmhSmQbx/Transfer-Icon-2.png) no-repeat fixed;
    background-size: cover;
    }

    .search-form i{
    background: #fe2929;
    border: solid 1px #9729fe;
    }
`);

const logo = document.querySelector('a[href="https://venge.io/"] img');
if (logo) {
  logo.src = "https://i.postimg.cc/CMm2Tk4T/logo-1.png";
}
})();