2354
This commit is contained in:
@@ -0,0 +1,130 @@
|
||||
.asociate-container {
|
||||
max-width: 800px;
|
||||
margin: 40px auto;
|
||||
padding: 0 15px;
|
||||
}
|
||||
|
||||
/* Título */
|
||||
.asociate-container .page-title {
|
||||
font-size: 2.4rem;
|
||||
font-weight: 700;
|
||||
color: var(--primary);
|
||||
text-align: center;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
/* Cards */
|
||||
.asociate-container .card {
|
||||
border-radius: var(--radius-sm, 4px);
|
||||
border: 1px solid var(--outline-variant, #e0ddd6);
|
||||
background: var(--surface-container-lowest, #fff);
|
||||
box-shadow: var(--shadow-sm, 0 3px 10px rgba(0,0,0,0.05));
|
||||
}
|
||||
|
||||
.asociate-container h4 {
|
||||
font-weight: 600;
|
||||
color: var(--on-surface);
|
||||
}
|
||||
|
||||
.asociate-container p {
|
||||
font-size: 1rem;
|
||||
color: var(--on-surface-muted);
|
||||
}
|
||||
|
||||
/* Formularios */
|
||||
.asociate-container .form-label {
|
||||
font-weight: 600;
|
||||
color: var(--on-surface);
|
||||
}
|
||||
|
||||
.asociate-container .form-control {
|
||||
border-radius: var(--radius-sm, 4px);
|
||||
border: 1px solid var(--outline-variant, #ccc);
|
||||
font-size: 0.95rem;
|
||||
padding: 10px;
|
||||
background: var(--surface-container-lowest, #fff);
|
||||
color: var(--on-surface);
|
||||
transition: border-color 0.2s ease, box-shadow 0.2s ease;
|
||||
}
|
||||
|
||||
.asociate-container .form-control:focus {
|
||||
border-color: var(--primary);
|
||||
box-shadow: 0 0 0 0.2rem rgba(194, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
/* Botones */
|
||||
.asociate-container .btn {
|
||||
font-weight: 600;
|
||||
padding: 10px 18px;
|
||||
border-radius: var(--radius-sm, 4px);
|
||||
transition: transform 0.1s ease, box-shadow 0.2s ease;
|
||||
}
|
||||
|
||||
.asociate-container .btn:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
.asociate-container .btn-primary {
|
||||
background: var(--primary);
|
||||
border-color: var(--primary);
|
||||
}
|
||||
|
||||
.asociate-container .btn-primary:hover {
|
||||
background: var(--primary-deep, #8b0000);
|
||||
border-color: var(--primary-deep, #8b0000);
|
||||
}
|
||||
|
||||
.asociate-container .btn-success {
|
||||
background: #28a745;
|
||||
border-color: #28a745;
|
||||
}
|
||||
|
||||
.asociate-container .btn-success:hover {
|
||||
background: #218838;
|
||||
border-color: #218838;
|
||||
}
|
||||
|
||||
/* Alertas */
|
||||
.asociate-container .alert {
|
||||
border-radius: var(--radius-sm, 4px);
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
/* Responsive */
|
||||
@media (max-width: 768px) {
|
||||
.asociate-container .page-title {
|
||||
font-size: 2rem;
|
||||
}
|
||||
.asociate-container { padding-left: 16px; padding-right: 16px; }
|
||||
.asociate-container .form-control { min-height: 44px; }
|
||||
}
|
||||
|
||||
@media (max-width: 576px) {
|
||||
.asociate-container .page-title {
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
|
||||
.asociate-container .card {
|
||||
padding: 15px !important;
|
||||
}
|
||||
.asociate-container .btn { min-height: 44px; }
|
||||
}
|
||||
|
||||
|
||||
.sugerencia-email {
|
||||
background: var(--surface-container-low, #f8f9fa);
|
||||
border-left: 3px solid var(--primary);
|
||||
padding: 4px 8px;
|
||||
border-radius: var(--radius-sm, 4px);
|
||||
margin-top: 4px;
|
||||
color: var(--on-surface);
|
||||
}
|
||||
.sugerencia-email a {
|
||||
color: var(--primary);
|
||||
text-decoration: none;
|
||||
font-weight: 500;
|
||||
}
|
||||
.sugerencia-email a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
Reference in New Issue
Block a user