File: /var/www/vhost/disk-apps/alq-cali.bikenow.co/public/abonados/index.html
<!DOCTYPE html>
<html>
<head>
<title>BoleterĂa Abonos | Sports Crowd</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
nav {
position: fixed;
top: 20px;
left: 20px;
}
nav a {
color: #ffff;
text-decoration: none;
display: inline-block;
}
header {
background: #e52d27;
/* fallback for old browsers */
background: -webkit-linear-gradient(to right, #b31217, #e52d27);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #b31217, #e52d27);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
padding: 48px;
width: 100%;
}
.container {
width: 95%;
max-width: 1200px;
display: flex;
align-items: center;
justify-content: space-around;
margin: auto;
}
img {
display: block;
height: 450px;
object-fit: cover;
width: auto;
animation: moverDerecha 2s ease-in;
}
.textos {
width: 50%;
color: #fffbd5;
}
.textos h1 {
font-size: 80px;
animation: moverIzquierda 2s ease-in;
}
.textos h2 {
font-size: 30px;
}
.textos a {
display: inline-block;
color: #fff;
font-weight: 300;
text-decoration: none;
margin-top: 30px;
border: 1px solid #fff;
width: 150px;
border-radius: 3px;
text-align: center;
padding: 10px 0;
animation: arriba 2s ease-in;
font-size: larger;
}
.wave1 {
height: 100px;
width: 100%;
background: #e52d27;
/* fallback for old browsers */
background: -webkit-linear-gradient(to right, #b31217, #e52d27);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #b31217, #e52d27);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.wave {
height: 100%;
width: 100%;
background: #e52d27;
/* fallback for old browsers */
background: -webkit-linear-gradient(to right, #b31217, #e52d27);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #b31217, #e52d27);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
@keyframes moverIzquierda {
0% {
opacity: 0;
transform: translateX(-100px);
}
100% {
opacity: 1;
transform: translate(0);
}
}
@keyframes moverDerecha {
0% {
opacity: 0;
transform: translateX(100px);
}
100% {
opacity: 1;
transform: translate(0);
}
}
@keyframes arriba {
0% {
opacity: 0;
transform: translateY(100px);
}
100% {
opacity: 1;
transform: translate(0);
}
}
@media screen and (max-width:1000px) {
img {
height: 400px;
}
}
@media screen and (max-width:800px) {
img {
height: 370px;
}
.textos h1 {
font-size: 70px;
}
.textos h2 {
font-size: 25px;
}
}
@media screen and (max-width:700px) {
img {
height: 250px;
}
.textos h1 {
font-size: 40px;
}
.textos h2 {
font-size: 15px;
}
}
@media screen and (max-width:450px) {
.container {
width: 100%;
flex-wrap: wrap-reverse;
justify-content: center;
}
img {
height: 180px;
}
.textos h1 {
font-size: 40px;
}
.textos h2 {
font-size: 15px;
}
}
</style>
</head>
<body>
<header>
<div class="container">
<div class="textos">
<h1>DIM PLUS</h1>
<a href="../abonados/index">Abonados</a>
</div>
<img src="../img/landing.png" />
</div>
</header>
<div class="wave1">
</div>
<div class="wave">
<div style="height: 150px; overflow: hidden;"><svg viewBox="0 0 500 150" preserveAspectRatio="none"
style="height: 100%; width: 100%;">
<path d="M0.00,49.98 C149.99,150.00 349.20,-49.98 500.00,49.98 L500.00,150.00 L0.00,150.00 Z"
style="stroke: none; fill: rgb(255, 255, 255);"></path>
</svg></div>
</div>
</body>
</html>