318 lines
5.7 KiB
CSS
318 lines
5.7 KiB
CSS
/* GENERAL */
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: #f9fafb;
|
|
color: #212529;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
/* TARJETAS */
|
|
.card {
|
|
border: none;
|
|
border-radius: 1rem;
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
|
|
background-color: #fff;
|
|
overflow: visible;
|
|
}
|
|
|
|
.card-body {
|
|
overflow: visible;
|
|
}
|
|
|
|
/* FORMULARIOS */
|
|
.form-control,
|
|
.form-select {
|
|
border-radius: 0.75rem;
|
|
font-size: 1rem;
|
|
transition: border-color 0.3s ease, box-shadow 0.3s ease;
|
|
}
|
|
|
|
.form-control:focus,
|
|
.form-select:focus {
|
|
border-color: #0d6efd;
|
|
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
|
|
}
|
|
|
|
/* BOTONES */
|
|
button,
|
|
.btn {
|
|
border-radius: 0.75rem;
|
|
transition: all 0.25s ease;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.btn:hover {
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 4px 10px rgba(0,0,0,0.06);
|
|
}
|
|
|
|
#btnAgregarAtleta,
|
|
#btnActualizarPiscina,
|
|
#btnGuardarFormacion,
|
|
#playPauseBtn {
|
|
padding: 0.75rem 1rem;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
#playPauseBtn {
|
|
background-color: #0d6efd;
|
|
color: white;
|
|
font-weight: 500;
|
|
border: none;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
#playPauseBtn:hover {
|
|
background-color: #084298;
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
/* MULTIMEDIA */
|
|
#waveform {
|
|
width: 100%;
|
|
height: 100px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
#audioPlayer {
|
|
display: none;
|
|
}
|
|
|
|
/* PISCINA */
|
|
#piscinaContainer {
|
|
background-color: #e6f7ff;
|
|
border: 2px dashed #007bff;
|
|
padding: 1rem;
|
|
border-radius: 0.75rem;
|
|
width: fit-content;
|
|
height: fit-content;
|
|
min-width: 300px;
|
|
min-height: 200px;
|
|
max-width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#piscina {
|
|
display: block;
|
|
width: 100% !important;
|
|
height: 100% !important;
|
|
min-width: 300px;
|
|
min-height: 200px;
|
|
background-image:
|
|
linear-gradient(to right, rgba(0,0,0,0.05) 1px, transparent 1px),
|
|
linear-gradient(to bottom, rgba(0,0,0,0.05) 1px, transparent 1px);
|
|
background-size: 45px 45px;
|
|
background-position: top left;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* TIMELINE */
|
|
.timeline-placeholder {
|
|
display: flex;
|
|
overflow-x: auto;
|
|
gap: 10px;
|
|
padding: 1rem;
|
|
border: 1px solid #ddd;
|
|
background: #ffffff;
|
|
border-radius: 0.75rem;
|
|
box-shadow: 0 1px 4px rgba(0,0,0,0.05);
|
|
}
|
|
|
|
.timeline-placeholder .step {
|
|
min-width: 100px;
|
|
padding: 0.5rem;
|
|
border: 1px solid #ccc;
|
|
background: white;
|
|
border-radius: 8px;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
font-size: 0.85rem;
|
|
transition: all 0.2s ease;
|
|
box-shadow: 1px 1px 3px rgba(0,0,0,0.05);
|
|
}
|
|
|
|
.timeline-placeholder .step:hover {
|
|
background-color: #dbeafe;
|
|
font-weight: bold;
|
|
transform: scale(1.03);
|
|
}
|
|
|
|
.step.active {
|
|
background-color: #0d6efd !important;
|
|
color: white !important;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* AUTOCOMPLETADO */
|
|
#sugerenciasFigura {
|
|
margin-top: 4px;
|
|
padding: 6px 0;
|
|
background-color: #fff;
|
|
border: 1px solid #ccc;
|
|
border-radius: 6px;
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
|
|
max-height: 160px;
|
|
overflow-y: auto;
|
|
position: absolute;
|
|
width: 100%;
|
|
z-index: 10;
|
|
}
|
|
|
|
#sugerenciasFigura button {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 6px 12px;
|
|
font-size: 0.9rem;
|
|
border: none;
|
|
background: none;
|
|
text-align: left;
|
|
color: #333;
|
|
cursor: pointer;
|
|
transition: background 0.2s ease;
|
|
}
|
|
|
|
#sugerenciasFigura button:hover {
|
|
background-color: #edf6ff;
|
|
color: #007bff;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* VISTA PREVIA FIGURA */
|
|
#previewFigura img {
|
|
margin-top: 8px;
|
|
max-width: 100%;
|
|
border: 1px solid #ddd;
|
|
border-radius: 6px;
|
|
height: auto;
|
|
}
|
|
|
|
#previewFigura p {
|
|
font-size: 0.85rem;
|
|
color: #555;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
/* RESPONSIVO */
|
|
@media (max-width: 768px) {
|
|
#piscina {
|
|
min-height: 300px;
|
|
}
|
|
|
|
.timeline-placeholder .step {
|
|
min-width: 80px;
|
|
font-size: 0.75rem;
|
|
}
|
|
}
|
|
/* ---------- ESTILO GLOBAL 2025 ---------- */
|
|
:root {
|
|
--color-primary: #0d6efd;
|
|
--color-success: #198754;
|
|
--radius-lg: 0.75rem;
|
|
--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
|
|
--transition-fast: all 0.25s ease;
|
|
--font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
/* Fuentes y cuerpo */
|
|
body {
|
|
font-family: var(--font-family);
|
|
font-size: clamp(1rem, 1vw + 0.2rem, 1.125rem);
|
|
line-height: 1.7;
|
|
background-color: #f9fafb;
|
|
color: #212529;
|
|
}
|
|
|
|
/* Botones unificados */
|
|
button,
|
|
.btn {
|
|
border-radius: var(--radius-lg);
|
|
padding: 0.6rem 1.2rem;
|
|
font-weight: 600;
|
|
font-size: 1rem;
|
|
transition: var(--transition-fast);
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.btn-primary,
|
|
.btn-success,
|
|
.btn-outline-primary,
|
|
.btn-outline-secondary {
|
|
border-width: 2px;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: var(--color-primary);
|
|
border-color: var(--color-primary);
|
|
color: #fff;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #084298;
|
|
border-color: #084298;
|
|
}
|
|
|
|
.btn-success {
|
|
background-color: var(--color-success);
|
|
border-color: var(--color-success);
|
|
color: white;
|
|
}
|
|
|
|
.btn-success:hover {
|
|
background-color: #145c32;
|
|
border-color: #145c32;
|
|
}
|
|
|
|
.btn-outline-primary {
|
|
color: var(--color-primary);
|
|
border-color: var(--color-primary);
|
|
background-color: white;
|
|
}
|
|
|
|
.btn-outline-primary:hover {
|
|
background-color: var(--color-primary);
|
|
color: white;
|
|
}
|
|
|
|
.btn-outline-secondary {
|
|
color: #6c757d;
|
|
border-color: #6c757d;
|
|
background-color: white;
|
|
}
|
|
|
|
.btn-outline-secondary:hover {
|
|
background-color: #6c757d;
|
|
color: white;
|
|
}
|
|
|
|
/* Formulario */
|
|
.form-control,
|
|
.form-select {
|
|
border-radius: var(--radius-lg);
|
|
border: 1px solid #ced4da;
|
|
transition: var(--transition-fast);
|
|
}
|
|
|
|
.form-control:focus,
|
|
.form-select:focus {
|
|
border-color: var(--color-primary);
|
|
box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
|
|
}
|
|
|
|
/* Tarjetas */
|
|
.card {
|
|
border: none;
|
|
border-radius: var(--radius-lg);
|
|
box-shadow: var(--shadow-md);
|
|
background-color: white;
|
|
}
|
|
|
|
/* Botón desactivado coherente */
|
|
button:disabled,
|
|
.btn:disabled {
|
|
opacity: 0.65;
|
|
cursor: not-allowed;
|
|
}
|