-
Notifications
You must be signed in to change notification settings - Fork 100
Open
Description
<title>Acceso por QR</title>
<!-- Fuente bonita -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap" rel="stylesheet">
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
}
body {
min-height: 100vh;
background: linear-gradient(135deg, #667eea, #764ba2);
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.card {
background: white;
border-radius: 20px;
padding: 35px;
max-width: 420px;
width: 100%;
text-align: center;
box-shadow: 0 15px 40px rgba(0,0,0,0.2);
animation: aparecer 1s ease;
}
@keyframes aparecer {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.icon {
font-size: 60px;
margin-bottom: 15px;
}
h1 {
color: #333;
margin-bottom: 10px;
font-weight: 700;
}
p {
color: #666;
font-size: 16px;
margin-bottom: 25px;
}
.btn {
display: inline-block;
background: linear-gradient(135deg, #667eea, #764ba2);
color: white;
padding: 12px 25px;
border-radius: 30px;
text-decoration: none;
font-weight: 500;
transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover {
transform: scale(1.05);
box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
footer {
margin-top: 20px;
font-size: 13px;
color: #aaa;
}
</style>
<div class="card">
<div class="icon">📱</div>
<h1>Bienvenido</h1>
<p>
Has accedido correctamente a esta página mediante un código QR.
</p>
<a href="#" class="btn">Continuar</a>
<footer>
Acceso rápido y seguro ✨
</footer>
</div>
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels