Files
TP-Diagnostico/style.css
2026-04-20 20:50:36 -03:00

54 lines
870 B
CSS

/* Estilos personalizados para la página de Apple Music */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f5f5f7;
color: #1d1d1f;
}
header {
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
header h1 {
font-size: 1.5rem;
font-weight: 600;
margin: 0;
}
/* Transición suave para el formulario */
#contenedor-formulario {
transition: all 0.3s ease-in-out;
}
/* Estilo para los títulos de sección */
h2 {
font-weight: 700;
margin-bottom: 1.5rem;
}
/* Ajustes para la tabla */
.table {
border-radius: 8px;
overflow: hidden;
}
/* Efecto hover en el botón principal */
#btn-toggle {
border-radius: 20px;
padding: 10px 30px;
font-weight: 600;
}
footer {
font-size: 0.9rem;
}
footer a {
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}