This commit is contained in:
2026-07-12 18:57:41 +02:00
parent 53e4d33d05
commit 014e5280c3
6 changed files with 850 additions and 300 deletions
+50
View File
@@ -0,0 +1,50 @@
<nav
aria-label="Breadcrumb"
class="breadcrumbs no-print"
style="background: transparent; color: black;"
>
<div style="display: flex; align-items: center; gap: 5px; flex-wrap: wrap;">
<a href="/" style="font-weight: bold;">Innercys</a>
</div>
<div
class="language-switcher-container"
>
<select
class="language-switcher"
>
<option value="es">Español</option>
<option disabled value="en">English</option>
<option disabled value="eu">Euskara</option>
</select>
</div>
<!-- Avatar iniciales con fondo degradado -->
<a href="/cuenta" style="display: flex; align-items: center; gap: 5px;">
<div
style="width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, #0c616e, #001873); display: flex; align-items: center; justify-content: center; color: white; font-weight: bold;"
>
</div>
</a>
</nav>
<style>
.language-switcher {
background: transparent;
border: 1px solid #ccc;
border-radius: 4px;
padding: 5px;
font-size: 16px;
}
.language-switcher-container {
color: black;
display: flex;
align-items: center;
gap: 5px;
flex-wrap: wrap;
}
@media (prefers-color-scheme: dark) {
.language-switcher-container {
color: white;
}
}
</style>
+787
View File
@@ -0,0 +1,787 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
line-height: 1;
font-family: 'Inter', sans-serif;
}
html,
body {
height: 100%;
}
p,
li {
margin-bottom: 15px;
line-height: 1.2;
}
nav {
text-align: left;
padding: 5px 10px;
background: #3b5f68;
color: white;
text-align: left;
font-size: 20px;
}
nav.menubar a {
color: white;
margin-right: 5px;
display: inline-block;
text-decoration: none;
border: 0.5px solid white;
padding: 2px 5px;
border-radius: 3px;
font-size: 20px;
}
nav.breadcrumbs {
display: flex;
justify-content: space-between;
}
nav.breadcrumbs a,
nav.breadcrumbs span {
margin: 0;
display: inline-block;
text-decoration: none;
border-radius: 3px;
font-size: 20px;
}
nav.breadcrumbs a {
color: darkgreen;
}
main {
max-width: 750px;
margin: 0 auto;
padding: 15px;
}
.center {
text-align: center;
display: block;
}
.grid {
text-align: center;
}
.grid.fotos {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
grid-template-rows: auto;
gap: 5px;
padding: 0;
}
.item.fotos {
display: inline-block;
border: 3px solid black;
border-radius: 6.5px;
box-sizing: content-box;
background: white;
max-width: 325px;
}
.item.fotos img {
width: 100%;
height: 175px;
background: linear-gradient(45deg, lightgray, transparent, lightgray);
object-fit: contain;
}
.item.fotos .info {
padding: 5px;
text-align: center;
}
.item.fotos .info a {
display: inline-block;
margin: 2px;
padding: 5px;
background: blue;
color: white;
text-decoration: none;
border-radius: 4px;
font-weight: bold;
vertical-align: middle;
}
.item.fotos .info a svg {
vertical-align: middle;
fill: white;
}
h1 {
padding: 10px 5px;
display: block;
text-align: center;
padding-top: 2.5px;
align-items: flex-start;
justify-content: space-between;
flex-direction: row;
}
h1.flex {
display: flex;
}
h2 {
text-align: center;
display: block;
margin-top: 10px;
margin-bottom: 25px;
}
label {
display: block;
margin-bottom: 15px;
}
input[type="text"],
input[type="date"],
input[type="file"],
input[type="email"],
input[type="password"],
textarea,
.input {
width: 100%;
padding: 8px;
margin-top: 2.5px;
border: 1px solid #000;
border-radius: 4px;
background: hsl(0, 0%, 90%);
display: block;
padding: 8px;
}
input[type="text"]::placeholder,
input[type="date"]::placeholder,
input[type="file"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
textarea::placeholder {
color: #a0a;
}
fieldset {
border: 1px solid #000;
padding: 15px;
border-radius: 4px;
}
.btn {
display: inline-flex;
align-items: center;
background: blue;
color: white;
text-decoration: none;
padding: 5px;
height: 60px;
border: 2.5px ridge #00000055;
transition: 0.2s;
text-align: left;
font-size: 25.75px;
line-height: 1;
max-width: 225px;
min-width: 150px;
box-sizing: border-box;
vertical-align: middle;
/* Ajusta el ancho total al contenido real de forma exacta */
width: fit-content;
}
.btn svg,
.btn .icon {
display: block;
width: 50px;
height: 50px;
fill: white;
background: rgba(0, 0, 0, 0.1);
border: 1px solid rgba(0, 0, 0, 0.05);
border-radius: 6px;
flex-shrink: 0;
/* Impide que el SVG se deforme o encoja */
margin-right: 7.5px;
}
.btn span {
display: inline-block;
flex: 1;
min-width: 0;
text-wrap: balance;
word-break: normal;
overflow: visible;
width: min-content;
min-width: 100px;
}
button,
.button {
background: blue;
color: white;
border: none;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
font-weight: bold;
display: inline-block;
vertical-align: middle;
}
.button svg {
vertical-align: middle;
fill: white;
}
tr:nth-child(even) {
background: #f4f4f4;
}
th,
td {
padding: 0.25em 0.5em;
}
th {
text-align: left;
font-weight: bold;
background: #eee;
border-bottom: 1px solid #aaa;
}
table {
border: 1px solid #aaa;
width: 100%;
margin-bottom: 30px;
}
.btn:hover {
filter: brightness(75%);
}
.auth {
display: inline-block;
color: lightblue;
}
.loading-spinner {
animation: spin 1s linear infinite;
object-view-box: -2 0 26 24;
border-radius: 100% !important;
width: 70px;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.hero2 {
display: grid;
grid-template-columns: 35% 65%;
}
.hero2-left {
background-color: #93e9ff;
color: #0e4553;
padding: 50px 15px;
text-align: center;
}
.hero2-left h2 {
font-size: 50px;
font-family: "Gasoek One", sans-serif;
font-weight: 400;
font-style: normal;
letter-spacing: 1px;
margin-top: 0;
}
.hero2-left p {
margin-bottom: 0;
}
.hero2-right {
background: #579ad7;
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
padding: 15px;
min-height: 14rem;
}
.hero2-right-card {
background: rgba(0, 0, 0, 0.7);
color: white;
display: inline-block;
border-radius: 15px;
padding: 10px;
text-align: center;
text-decoration: none;
}
.hero2-right-card h2 {
margin-bottom: 0;
}
.h3c {
display: grid;
grid-template-columns: auto 200px;
background: #f9f1e2;
}
.hero3 {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(175px, 200px));
justify-content: center;
gap: 15px;
}
.hero3 .btn {
max-width: unset;
width: 100%;
}
@media only screen and (max-width: 550px) {
.hero2 {
grid-template-columns: unset;
grid-template-rows: auto auto;
}
.hero2 .hero2-left {
padding: 20px 15px;
}
.hero3 {
grid-template-columns: 1fr 1fr;
gap: 7.5px;
margin: 7.5px;
}
nav.breadcrumbs {
grid-template-columns: auto 5rem;
}
}
.font-1 {
font-family: "Plus Jakarta Sans", sans-serif;
font-optical-sizing: auto;
font-style: normal;
}
.font-2 {
font-family: "Gasoek One", sans-serif;
font-style: normal;
}
.hero4 {
background-color: #f9f1e2;
padding: 20px 80px;
color: #332115;
}
.hero4-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 325px));
justify-content: center;
gap: 15px;
align-content: start;
}
.hero4-card {
background-color: #fff;
padding: 5px;
/* min-height: 300px; */
border-radius: 7.5px;
text-align: center;
color: #000;
text-decoration: none;
border: 2px solid grey;
box-shadow:
0 4px 8px 0 rgba(0, 0, 0, 0.2),
0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.hero4-card img {
width: 100%;
border-radius: 7.5px;
height: 175px;
object-fit: cover;
}
.hero4 h2,
.hero5 h2 {
font-size: 32px;
}
.hero4 h3 {
font-size: 24px;
color: #332115;
margin: 10px 0;
}
.hero3 {
padding: 15px;
margin: 0;
}
.hero5 {
background-color: #5f6d3b;
padding: 20px 80px;
color: #e9f9b2;
}
.hero5-item h3 {
font-size: 2.75rem;
font-family: serif;
font-weight: 400;
line-height: 0.75;
}
.hero5-item h3 small {
font-size: 1.75rem;
}
.hero5-item h4 {
font-size: 2rem;
font-weight: 500;
}
.hero5-item div {
padding: 0.5px 0 10px;
}
.hero5-item img {
height: 8rem;
border-radius: 178px;
max-width: 100%;
object-fit: cover;
}
.hero5-item:first-of-type {
border-top: 4px dotted #e9f9b2;
}
.hero6 {
background-color: #332115;
color: #f9f1e2;
padding: 25px;
padding-top: 5px;
}
.hero5-item {
display: grid;
grid-template-columns: 7rem minmax(225px, auto) 10rem;
border-bottom: 4px dotted #e9f9b2;
padding: 7.5px 0;
}
@media only screen and (min-width: 551px) and (max-width: 875px) {
.hero5-item {
grid-template-columns: 5rem minmax(225px, auto);
}
.hero5-item img {
display: none;
}
.hero5-item h3 {
font-size: 2rem;
line-height: 0.75;
}
.hero5-item h3 small {
font-size: 1.25rem;
}
.hero5-item h4 {
font-size: 2rem;
}
.hero5-item div {
padding-top: 0;
padding-bottom: 5px;
}
.hero4,
.hero5 {
padding: 20px 40px;
}
}
@media only screen and (max-width: 550px) {
.hero5-item {
display: block;
}
.hero5-item img {
display: none;
}
.hero5-item h3 {
font-size: 2rem;
line-height: unset;
}
.hero5-item h3 small {
font-size: 1.25rem;
}
.hero5-item br {
display: none;
}
.hero5-item h4 {
font-size: 2rem;
}
.hero5-item div {
padding-top: 0;
padding-bottom: 2.5px;
}
.hero4,
.hero5 {
padding: 20px 40px;
}
.hero5-item img {
height: 125px;
width: 100%;
border-radius: 25px;
}
}
.bolsas-grid {
display: grid;
grid-template-columns: repeat(auto-fit, 62mm);
justify-content: center;
}
@media print {
h1,
.no-print {
display: none !important;
}
}
@media screen {
.no-screen {
display: none !important;
}
.bolsas-grid {
gap: 15px;
margin: 10px;
}
}
.labelbolsa {
width: 62mm;
height: 100mm;
background-color: #fff;
border: 5px solid black;
text-align: center;
padding: 10px;
margin: 0 auto;
display: grid;
grid-template-rows: 25mm auto 3.5mm;
}
.labelbolsa .head-div {
display: grid;
grid-template-columns: 26.5mm auto;
}
.labelbolsa .head-div img,
.labelbolsa .head-div svg {
height: 25mm;
margin: 0;
float: left;
}
.labelbolsa .bottomborder {
display: block;
border-bottom: 2.5px solid black;
margin: 0;
padding-bottom: 2.5px;
margin-bottom: 5px;
text-align: center;
}
.labelbolsa .foot-div {
border-top: 2.5px solid black;
margin: 0;
padding-top: 2.5px;
text-align: center;
bottom: 0;
}
.labelbolsa .head-div .big {
display: block;
font-size: 30px;
}
.labelbolsa .body-div {
border-top: 2.5px solid black;
margin: 5px 0;
padding-top: 5px;
font-weight: 200;
}
.footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: #f8f9fa;
text-align: center;
padding: 10px 0;
box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
display: flex;
justify-content: center;
gap: 15px;
height: 80px;
}
.footer a {
color: #000000;
text-decoration: none;
font-weight: bold;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 5px 10px;
border-radius: 5px;
min-width: 75px;
}
.footer a:hover {
text-decoration: underline;
}
/* Animate the SVG icons on active state, width from 24px to 100% */
@keyframes activeIcon {
0% {
width: 30px;
}
100% {
width: 100%;
}
}
.footer svg {
height: 30px;
width: 30px;
margin-bottom: 5px;
border-radius: 15px;
}
.footer .active svg {
background-color: #007bff;
color: #ffffff;
animation: activeIcon 0.3s ease-in-out forwards;
}
.loader {
background: #000;
color: #fff;
padding: 10px;
text-align: center;
border-radius: 10px;
display: block;
max-width: 300px;
margin: 10px auto;
}
.fab {
/* Floating Action Button */
position: fixed;
bottom: 20px;
right: 20px;
background-color: #007bff;
color: #ffffff;
border: none;
border-radius: 50%;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
cursor: pointer;
transition: background-color 0.3s ease;
}
.fab2 {
/* Floating Action Button */
position: fixed;
bottom: 90px;
right: 10px;
background-color: #007bff;
color: #ffffff;
border: none;
border-radius: 50%;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
cursor: pointer;
transition: background-color 0.3s ease;
}
body:has(.footer) .fab {
bottom: 100px;
}
body:has(.footer) .fab2 {
bottom: 170px;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #121212;
color: #ffffff;
color-scheme: dark;
}
nav {
background-color: #1f1f1f;
color: #ffffff;
}
nav.breadcrumbs a,
nav.breadcrumbs span {
color: lightgreen;
}
main {
color: #ffffff;
}
.footer {
background-color: #1f1f1f;
color: #ffffff;
}
.footer a {
color: #ffffff;
}
tr:nth-child(even) {
background: #2a2a2a;
}
th {
background: #2a2a2a;
border-bottom: 1px solid #585858;
}
table {
border: 1px solid #585858;
}
.loader {
background: #1f1f1f;
color: #ffffff;
}
input[type="text"]::placeholder,
input[type="date"]::placeholder,
input[type="file"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
textarea::placeholder {
color: rgb(255, 150, 255);
font-style: italic;
}
fieldset {
border: 1px solid #585858;
}
input[type="text"],
input[type="date"],
input[type="file"],
input[type="email"],
input[type="password"],
textarea,
.input {
border: 1px solid #585858;
background: hsl(0, 0%, 15%);
}
}
-184
View File
@@ -1,184 +0,0 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Poppins, sans-serif;
}
body {
background: #f2f5fb;
color: #222;
}
header {
height: 150px;
background: linear-gradient(135deg, #0047FF, #4C7DFF);
color: white;
padding: 30px;
border-radius: 0 0 35px 35px;
display: flex;
flex-direction: column;
justify-content: center;
box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}
header h1 {
font-size: 34px;
font-weight: 700;
}
header p {
opacity: .9;
margin-top: 8px;
}
.container {
padding: 20px;
padding-bottom: 90px;
}
.card {
background: white;
border-radius: 22px;
padding: 18px;
margin-bottom: 18px;
box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}
.ticket {
display: flex;
justify-content: space-between;
align-items: center;
}
.ticket button {
background: #005CFF;
border: none;
color: white;
padding: 10px 20px;
border-radius: 12px;
cursor: pointer;
font-weight: bold;
}
.section-title {
font-size: 20px;
font-weight: 700;
margin-bottom: 15px;
}
.attractions {
display: flex;
flex-direction: column;
gap: 15px;
}
.ride {
display: flex;
align-items: center;
justify-content: space-between;
}
.icon {
font-size: 34px;
}
.wait {
padding: 8px 16px;
border-radius: 12px;
font-weight: bold;
color: white;
}
.green {
background: #2ecc71;
}
.orange {
background: #f39c12;
}
.red {
background: #e74c3c;
}
.map {
height: 170px;
border-radius: 18px;
background: linear-gradient(45deg, #6BCB77, #4D96FF);
display: flex;
align-items: center;
justify-content: center;
font-size: 60px;
}
.restaurants {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
}
.food {
background: #f8f8f8;
padding: 15px;
border-radius: 18px;
text-align: center;
}
.shows {
display: flex;
flex-direction: column;
gap: 12px;
}
.show {
background: #eef5ff;
padding: 15px;
border-radius: 15px;
}
.bottom {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 72px;
background: white;
display: flex;
justify-content: space-around;
align-items: center;
box-shadow: 0 -5px 15px rgba(0, 0, 0, .12);
}
.bottom div {
text-align: center;
font-size: 13px;
}
.bottom span {
font-size: 26px;
display: block;
}
@media(prefers-color-scheme:dark) {
body {
background: #151515;
color: white;
}
.card {
background: #222;
}
.food {
background: #2d2d2d;
}
.show {
background: #30364d;
}
.bottom {
background: #222;
}
}
-87
View File
@@ -1,87 +0,0 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Innercys</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
<link href="/park/_style.css" rel="stylesheet">
</head>
<body>
<header>
<h1>Innercys</h1>
<p>¡Bienvenido! Disfruta de la magia.</p>
</header>
<div class="container">
<div class="card ticket">
<div>
<h3>Entrada Digital</h3>
<p>3 Adultos</p>
</div>
<button>Mostrar</button>
</div>
<div class="card">
<div class="section-title">🎢 Atracciones</div>
<div class="attractions">
<div class="ride">
<div>
<strong>Space Adventure</strong>
<br>
<small>Montaña rusa</small>
</div>
<div class="wait green"> 10 min </div>
</div>
<div class="ride">
<div>
<strong>Piratas</strong>
<br>
<small>Paseo en barco</small>
</div>
<div class="wait orange"> 35 min </div>
</div>
<div class="ride">
<div>
<strong>Big Thunder</strong>
<br>
<small>Montaña minera</small>
</div>
<div class="wait red"> 70 min </div>
</div>
</div>
</div>
<div class="card">
<div class="section-title">🍔 Restaurantes</div>
<div class="restaurants">
<div class="food"> 🍕 <br> Pizza </div>
<div class="food"> 🍔 <br> Burger </div>
<div class="food"> 🥗 <br> Healthy </div>
<div class="food"> 🍦 <br> Ice Cream </div>
</div>
</div>
<div class="card">
<div class="section-title">🎆 Espectáculos</div>
<div class="shows">
<div class="show"> ✨ Desfile <br> 15:30 </div>
<div class="show"> 🎇 Show Nocturno <br> 22:00 </div>
</div>
</div>
</div>
<div class="bottom">
<div>
<span>🏠</span> Inicio
</div>
<div>
<span>🗺</span> Mapa
</div>
<div>
<span>🎢</span> Atracciones
</div>
<div>
<span>🎟</span> Entradas
</div>
<div>
<span>👤</span> Perfil
</div>
</div>
</body>
</html>
+13
View File
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Innercys</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
<link href="/_/style.css" rel="stylesheet">
</head>
<body>
<?php include "/var/www/html/_/comp/Header.php"; ?>
</body>
</html>
-29
View File
@@ -1,29 +0,0 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Innercys</title>
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.2.1/jquery.mobile-1.2.1.min.css" />
<script src="https://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="https://code.jquery.com/mobile/1.2.1/jquery.mobile-1.2.1.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header" data-theme="b">
<h1>Pagar</h1>
</div>
<div data-role="content">
<p>¡Bienvenidx a Innercys!</p>
<ul data-role="listview" data-inset="true" data-filter="false">
<li><a href="#">Restaurante "Pepepako"</a></li>
<li><a href="#">Bar "Barra"</a></li>
</ul>
</div>
</div>
</body>
</html>