File "FFA_RANKING_DIARIO.php"

Full path: C:/xampp/htdocs/SITE FUNCIONANDO (STRING_NOTFOUND_837_111)/FFA_RANKING_DIARIO.php
File size: 2.93 B (2.93 KB bytes)
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

<?php
// Vortex Aion 
// Servidor com Emulador Isolado - PvE e PvP

require "header.php";

?>
<div class="contentTAB">
    <div class="listTAB dark-shadow">
        <div class="news-title"><center>Free for All - Placar Diário</center></div>
        <div class="top100-list">
            <table cellspacing="0" width="100%">
                <tr align="center">
                    <td class="tophead">Lugar</td>
                    <td class="tophead">Nome</td>
                    <td class="tophead">Rank</td>
                    <td class="tophead">Abates</td>
                    <td class="tophead">Mortes</td>
                    <td class="tophead">KDA</td>
                </tr>
                <?php require "modules/ffa_diario_m.php"; ?>
            </table>
        </div>
    </div>
</div>

<style>
        .aionlogo {
            position: relative;
            top: 70px;
            text-align: center;
        }
body {
    overflow-y: auto;
}

.dark-shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contentTAB {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin-top: 50px;
}

.listTAB {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    padding: 30px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
}

.news-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #dcdcdc;
    font-weight: bold;
}

.top100-list {
    width: 100%;
    margin-top: 20px;
}

.top100-list table {
    width: 100%;
    border-collapse: collapse;
}

.top100-list tr {
    position: relative;
}

.top100-list tr + tr::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px; /* Ajuste para garantir que a linha fique logo abaixo do conteúdo */
    height: 1px; /* Altura da linha */
    background-image: url('img/line.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; /* Ajuste se necessário para dimensionar a linha */
}


.tophead {
    padding: 15px;
    color: #a9a9a9;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.top100-list td {
    padding: 15px;
    color: #696969;
    font-size: 16px;
}

.top100-list a {
    color: #a9a9a9;
    text-decoration: none;
    font-weight: bold;
}

.top100-list a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.access-restricted p {
    color: red;
    font-size: 24px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .listTAB {
        max-width: 90%;
        padding: 20px;
    }

    .news-title {
        font-size: 1.5rem;
    }

    .top100-list td, .tophead {
        font-size: 14px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .listTAB {
        padding: 15px;
    }

    .news-title {
        font-size: 1.25rem;
    }

    .top100-list td, .tophead {
        font-size: 12px;
        padding: 8px;
    }
}
</style>