| Server IP : 165.22.154.248 / Your IP : 216.73.217.0 [ Web Server : Apache/2.4.29 (Ubuntu) System : Linux droplet-integra 4.15.0-197-generic #208-Ubuntu SMP Tue Nov 1 17:23:37 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 7.2.24-0ubuntu0.18.04.15 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/avanza-lms.old.bak9874115/eventos/css/ |
Upload File : |
/*------------------------------------
?FUENTES
------------------------------------*/
/* Titulos */
@font-face {
font-family: 'Uniform Medium';
src: url('../fonts/Uniform-Medium.woff2') format('woff2'),
url('../fonts/Uniform-Medium.woff') format('woff');
font-weight: 500;
font-style: normal;
}
/* Parrafos */
@font-face {
font-family: 'Uniform';
src: url('../fonts/Uniform-Regular.woff2') format('woff2'),
url('../fonts/Uniform-Regular.woff') format('woff');
font-weight: normal;
font-style: normal;
}
:root {
/*=== Colores ===*/
--marca__color1: #24294E;
--marca__color2: #ECC084;
--beige: #ffdfb2;
--color__gris: #e5e5e5;
--color__tabla: #d8dae1;
--color__tablaBorde: #989898;
--color__blanco: #ffffff;
--color__negro: #000;
--color__texto: #444444;
--color__textoMedio: #666666;
/*=== Generales ===*/
--font: "Uniform", sans-serif;
--font_heading: "Uniform Medium", sans-serif;
--font_heading_weight: 500;
--font_color: var(--color__texto);
}
/*------------------------------------
?RESTYLE
------------------------------------*/
@import "restyle.scss";
/*------------------------------------
?AJUSTES GENERALES
------------------------------------*/
:root {
font-size: 18px;
--footer__alto: 60px;
}
@media (max-width: 767px) {
:root {
--footer__alto: 70px;
}
}
body {
font-family: var(--font);
color: var(--font_color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--font_heading);
font-weight: var(--font_heading_weight);
}
img {
max-width: 100%;
height: auto;
}
/*------------------------------------
?SCROLL
------------------------------------*/
*::-webkit-scrollbar {
width: 8px;
}
/* Ponemos un color de fondo y redondeamos las esquinas del thumb */
*::-webkit-scrollbar-thumb {
background: hsl(0, 0%, 75%);
border-radius: 4px;
}
/* Cambiamos el fondo y agregamos una sombra cuando esté en hover */
*::-webkit-scrollbar-thumb:hover {
background: hsl(0, 0%, 70%);
}
/* Cambiamos el fondo cuando esté en active */
*::-webkit-scrollbar-thumb:active {
background-color: hsl(0, 0%, 68%);
}
/* Ponemos un color de fondo y redondeamos las esquinas del track */
*::-webkit-scrollbar-track {
background: hsl(0, 0%, 93%);
border-radius: 4px;
}
/* Cambiamos el fondo cuando esté en active o hover */
*::-webkit-scrollbar-track:hover,
*::-webkit-scrollbar-track:active {
background: hsl(0, 0%, 93%);
}
/*------------------------------------
?CONTENDOR
------------------------------------*/
/* Contenedor */
.vyl__container {
display: flex;
flex-flow: column wrap;
align-items: center;
box-sizing: content-box;
min-height: calc(100vh - var(--footer__alto));
position: relative;
background: var(--marca__color1) url(../img/fondo.png);
background-position: center, left -50px top -50px;
background-size: 110%;
background-repeat: no-repeat;
}
.vyl__content {
max-width: 1360px;
width: 100%;
text-align: center;
padding-left: 22%;
padding-right: 22%;
}
@media (max-width: 767px) {
.vyl__content {
padding-left: 20px;
padding-right: 20px;
}
}
/* Logo */
.vyl__logoImg {
max-width: 250px;
width: 100%;
margin: 30px auto;
}
/* Video */
.vyl__video {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
margin-bottom: 20px;
}
.vyl__video iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/*------------------------------------
?FOOTER
------------------------------------*/
.vyl__footer {
background-color: var(--marca__color1);
border-top: 6px solid var(--marca__color2);
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 15px;
min-height: var(--footer__alto);
}
.vyl__footer a {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
text-decoration: none;
color: var(--color__blanco);
font-weight: var(--font_heading_weight);
margin: 0 30px;
transform: scale(1);
transition: transform .3s;
line-height: 1;
}
.vyl__footer img {
width: 30px;
margin-right: 10px;
}
.vyl__footer a:hover {
transform: scale(1.05);
}