Files
front-Censo/src/components/Perifericos/pregunta1EP.module.scss
T

154 lines
2.6 KiB
SCSS
Raw Normal View History

2025-11-18 13:53:21 -06:00
.dashboardContainer_P1 {
2025-11-05 20:00:58 -06:00
display: flex;
flex-direction: column;
padding: 0;
margin: 0;
min-height: 100vh;
background-color: #f4f4f4;
}
2025-11-18 13:53:21 -06:00
.scanView_P1 {
2025-11-05 20:00:58 -06:00
padding: 20px;
width: 100%;
2025-11-18 13:53:21 -06:00
.container_P1 {
2025-11-05 20:00:58 -06:00
width: 100%;
max-width: 900px;
background: #fff;
border-radius: 12px;
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
overflow: hidden;
display: flex;
flex-direction: column;
border: 1px solid #ddd;
}
2025-11-18 13:53:21 -06:00
.header_P1 {
2025-11-05 20:00:58 -06:00
padding: 16px 20px;
background: #f7f7f7;
border-bottom: 1px solid #e0e0e0;
font-size: 15px;
color: #0056b3;
text-align: center;
font-weight: 500;
}
2025-11-18 13:53:21 -06:00
.main-content_P1 {
2025-11-05 20:00:58 -06:00
display: flex;
min-height: 420px;
}
2025-11-18 13:53:21 -06:00
.tabs_P1 {
2025-11-05 20:00:58 -06:00
width: 230px;
background-color: #fafafa;
display: flex;
flex-direction: column;
2025-11-12 11:11:08 -06:00
justify-content: space-evenly;
2025-11-05 20:00:58 -06:00
}
2025-11-18 13:53:21 -06:00
.tab_P1 {
padding: 12px 16px;
2025-11-05 20:00:58 -06:00
cursor: pointer;
border-right: 1px solid #e0e0e0;
color: #555;
transition: all 0.3s ease;
border-left: 4px solid transparent;
font-size: 15px;
font-weight: 500;
2025-11-11 17:51:13 -06:00
background: none;
border: none;
text-align: left;
2025-11-05 20:00:58 -06:00
}
2025-11-18 13:53:21 -06:00
.tab_P1:hover {
2025-11-05 20:00:58 -06:00
background-color: #f0f0f0;
color: #000;
}
2025-11-18 13:53:21 -06:00
.active_P1 {
2025-11-05 20:00:58 -06:00
background-color: #fff;
border-left: 4px solid #0056b3;
border-right: none;
border-bottom: 1px solid #0056b3;
color: #0056b3;
font-weight: 600;
}
2025-11-18 13:53:21 -06:00
.data-table-wrapper_P1 {
2025-11-05 20:00:58 -06:00
flex: 1;
padding: 20px;
}
2025-11-18 13:53:21 -06:00
.data-table_P1 {
2025-11-05 20:00:58 -06:00
width: 100%;
}
2025-11-18 13:53:21 -06:00
.data-row_P1 {
2025-11-05 20:00:58 -06:00
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 16px;
background: #f9f9f9;
transition: background 0.2s ease;
}
2025-11-18 13:53:21 -06:00
.data-row_P1:hover {
2025-11-05 20:00:58 -06:00
background: #f1f1f1;
}
2025-11-18 13:53:21 -06:00
.os-name_P1 {
2025-11-05 20:00:58 -06:00
flex: 1;
font-size: 15px;
color: #333;
}
2025-11-18 13:53:21 -06:00
.count-box_P1 {
2025-11-05 20:00:58 -06:00
background: #ffffff;
border: 1px solid #0056b3;
padding: 6px 14px;
font-weight: 600;
font-size: 15px;
text-align: center;
min-width: 70px;
}
2025-11-18 13:53:21 -06:00
.total-row_P1 {
2025-11-05 20:00:58 -06:00
background: #eaf4ff;
font-weight: bold;
2025-11-18 13:53:21 -06:00
.count-box_P1 {
2025-11-11 17:51:13 -06:00
color: #0056b3;
2025-11-05 20:00:58 -06:00
}
}
}
2025-11-20 14:19:30 -06:00
.grid {
background-color: #fff;
border-radius: 10px;
2025-11-21 10:36:33 -06:00
grid-template-columns: repeat(4, 1fr);
2025-11-20 14:19:30 -06:00
align-items: end;
2025-11-28 11:49:20 -06:00
gap: 10px;
2025-11-20 14:19:30 -06:00
padding: 20px;
display: grid;
overflow-x: auto;
box-shadow: 0 4px 10px #0000001a;
}
2025-11-05 20:00:58 -06:00
@media (max-width: 700px) {
2025-11-18 13:53:21 -06:00
.scanView_P1 .tabs_P1 {
width: 160px;
2025-11-05 20:00:58 -06:00
}
2025-11-18 13:53:21 -06:00
.scanView_P1 .tab_P1 {
font-size: 12px;
padding: 10px 12px;
text-align: left;
2025-11-05 20:00:58 -06:00
}
2025-11-28 11:49:20 -06:00
.grid{
display: flex;
flex-direction: column;
align-items: start;
}
}