Files
front-Censo/src/app/styles/layout/pregunta2EP.scss
T
2025-11-08 10:47:13 -06:00

64 lines
950 B
SCSS

.container {
max-width: 1000px;
margin: 2% 10% 20% 10%;
background: white;
padding: 20px;
border: 1px solid #ddd;
border-radius: 6px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.header {
font-weight: bold;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 1px solid #eee;
font-size: 14px;
}
.row {
display: flex;
gap: 10px;
align-items: flex-start;
flex-wrap: wrap;
}
.item {
flex: 1;
min-width: 140px;
}
label {
display: block;
margin-bottom: 5px;
font-size: 14px;
color: #333;
}
input[type="text"] {
width: 100%;
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
background-color: #f0f5ff;
font-size: 14px;
box-sizing: border-box;
}
/* Estilos para los íconos de ayuda */
.help-icon {
color: #007bff;
font-size: 12px;
cursor: help;
margin-left: 3px;
}
/* Responsivo */
@media (max-width: 768px) {
.row {
flex-direction: column;
gap: 10px;
}
}