Newer
Older
ournorth2021 / views / salones.php
LuisOlaya on 19 Apr 2021 3 KB temp 5
<?php

if ($_SESSION['id_user'] == "") {
    echo '<script>
				window.location = "/login"
			</script>
        ';
}

$id = $pagina[1];
?>
<div class="container-fluid" >


<img id="myVideo" src="/img/img_wd/bg_salones.png" alt="">

<style>
    #myVideo {
        position: fixed;
        right: 0;
        bottom: 0px;
        min-width: 100%;
        min-height: 100%;
        height: 100%;
        z-index: -1;
        width: 100%;
    }
</style>


<h3 style="position: absolute; bottom: 5%; left: 30%;" class="blanco">Los salones se abrirĂ¡n el 20 de Abril</h3>
<div class="e_web">

<div class="row text-center">
            <div class="col-12">
                <button type="button" class="btn btn-warning" style="margin-right: 360px; margin-top: 120px;" >Ingresar</button>
                <button type="button" class="btn btn-warning">Ingresar</button>
                <button type="button" class="btn btn-warning" style="margin-left: 340px; margin-top: 120px;">Ingresar</button>
            </div>
        </div>

     <?php /* echo $bt_iz;  */ ?>
    <?php /* echo $bt_dr; */ ?>
    <a href="<?php echo $url; ?>/lobby">
        <img src="<?php echo $url; ?>/img/img_wd/bt_back.png" style="width: 130px; position: absolute; bottom: 20px; left: 10%;">
    </a>
    <!-- <img src="<?php echo $base; ?>" width="100%"> -->

</div>

<div class="e_movil" align="center">
    <!-- <img src="<?php echo $base; ?>" width="100%"> -->
    <?php /* echo $bt_iz_movil; */ ?>
    <?php /* echo $bt_dr_movil;  */ ?>

    <a href="<?php echo $url; ?>/lobby">
        <img src="<?php echo $url; ?>/img/img_wd/bt_back.png" width="220">
    </a>

</div>
</div>

<style>
    .botones {
        position: absolute;
        border-radius: 30px;
        font-size: 11px;
        padding: 5px 20px;
        font-weight: bold;
    }

    .parpadea {

        animation-name: parpadeo;
        animation-duration: 1s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;

        -webkit-animation-name: parpadeo;
        -webkit-animation-duration: 3s;
        -webkit-animation-timing-function: linear;
        -webkit-animation-iteration-count: infinite;
    }

    @-moz-keyframes parpadeo {
        0% {
            transform: scale(1);
        }

        15% {
            transform: scale(1.1);
        }

        30% {
            transform: scale(1);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes parpadeo {
        0% {
            transform: scale(1);
        }

        15% {
            transform: scale(1.1);
        }

        30% {
            transform: scale(1);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes parpadeo {
        0% {
            transform: scale(1);
        }

        15% {
            transform: scale(1.1);
        }

        30% {
            transform: scale(1);
        }

        100% {
            transform: scale(1);
        }
    }

    .blanco {
        color: white !important;
    }
</style>

<script>
    $(document).ready(function() {
        $("#maestro").height($("#img_muestra").height());
    });

    $(window).resize(function() {
        $("#maestro").height($("#img_muestra").height());
    });
</script>