Skip to content

Sielzada #108

@ribeiroeurides06-ui

Description

@ribeiroeurides06-ui
<title>FF Overlay - Purple Background</title> <style> /* Efeito de Fundo Transparente */ body { background: rgba(0, 0, 0, 0.4); /* Fundo quase invisível */ height: 100vh; margin: 0; display: flex; justify-content: center; align-items: center; font-family: 'Segoe UI', sans-serif; overflow: hidden; }
    /* Painel em Segundo Plano (Glassmorphism) */
    .panel {
        background: rgba(26, 26, 26, 0.85); /* Roxo bem escuro transparente */
        backdrop-filter: blur(10px); /* Desfoca o que estiver atrás */
        -webkit-backdrop-filter: blur(10px);
        border: 2px solid #A020F0;
        border-radius: 20px;
        box-shadow: 0 0 30px rgba(160, 32, 240, 0.6);
        display: flex;
        padding: 30px;
        gap: 50px;
        width: 550px;
        color: white;
        position: relative;
    }

    .column {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    h2 {
        color: #A020F0;
        font-size: 1.1rem;
        margin-top: 0;
        text-transform: uppercase;
        text-shadow: 0 0 10px rgba(160, 32, 240, 0.5);
        border-left: 4px solid #A020F0;
        padding-left: 10px;
    }

    /* Opções Estilizadas */
    .option {
        margin: 8px 0;
        display: flex;
        align-items: center;
        cursor: pointer;
        font-size: 0.95rem;
        font-weight: 500;
        transition: 0.2s;
    }

    .option:hover {
        color: #bc4dfd;
        text-shadow: 0 0 8px #A020F0;
    }

    input[type="checkbox"], input[type="radio"] {
        accent-color: #A020F0;
        width: 18px;
        height: 18px;
        margin-right: 12px;
        cursor: pointer;
    }

    .label-aux {
        font-size: 0.7rem;
        color: #A020F0;
        margin: 15px 0 5px 0;
        font-weight: bold;
    }

    /* Botão Injetar Flutuante */
    .btn-inject {
        background: linear-gradient(45deg, #A020F0, #6a0dad);
        color: white;
        border: none;
        padding: 12px;
        border-radius: 8px;
        font-weight: 900;
        cursor: pointer;
        margin-top: 20px;
        transition: 0.4s;
        box-shadow: 0 4px 15px rgba(160, 32, 240, 0.4);
    }

    .btn-inject:hover {
        letter-spacing: 2px;
        box-shadow: 0 0 25px #A020F0;
    }

</style>
<div class="panel">
    <div class="column">
        <h2>AIMBOT:</h2>
        <label class="option"><input type="checkbox"> Aim 100%</label>
        <label class="option"><input type="checkbox"> AimSmooth</label>
        <label class="option"><input type="checkbox"> Precision</label>

        <div class="label-aux">TIPO DE AUXÍLIO:</div>
        <label class="option"><input type="radio" name="trigger"> Ao Atirar</label>
        <label class="option"><input type="radio" name="trigger"> Ao Olhar</label>

        <button class="btn-inject" onclick="injecting()">INJETAR</button>
    </div>

    <div class="column">
        <h2>CONFIG:</h2>
        <label class="option"><input type="checkbox"> Auto Headshot</label>
        <label class="option"><input type="checkbox"> Recoil Control</label>
        <label class="option"><input type="checkbox"> Strafe Auto</label>
        <label class="option"><input type="checkbox"> ESP Aim</label>
    </div>
</div>

<script>
    function injecting() {
        let btn = document.querySelector('.btn-inject');
        btn.innerHTML = "INJETANDO...";
        btn.style.background = "#444";
        setTimeout(() => {
            btn.innerHTML = "INJETADO COM SUCESSO!";
            btn.style.background = "#00FF00";
            btn.style.color = "black";
        }, 2000);
    }
</script>

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions