Files
front-AT/app/globals.css
T

675 lines
10 KiB
CSS
Raw Normal View History

2025-09-02 19:50:17 -04:00
* {
color: #333333;
2025-08-18 10:37:48 -04:00
}
2025-09-08 13:35:46 -04:00
*,
*::before,
*::after {
2025-10-29 14:28:50 -06:00
margin: 0;
padding: 0;
2025-09-08 13:35:46 -04:00
box-sizing: inherit;
}
html {
box-sizing: border-box;
font-size: 62.5%;
2025-09-22 10:32:05 -06:00
overflow-y: auto;
2025-09-29 15:37:56 -06:00
scrollbar-width: none;
2025-09-08 13:35:46 -04:00
}
2025-09-02 19:50:17 -04:00
body {
2025-09-05 14:17:26 -04:00
position: relative;
2025-09-02 19:50:17 -04:00
font-family: var(--font-poppins), sans-serif;
display: grid;
2025-09-12 18:12:38 -06:00
grid-template-rows: auto 1fr auto;
2025-09-02 19:50:17 -04:00
min-height: 100dvh;
2025-10-08 12:01:52 -06:00
width: 100vw;
2025-09-08 20:12:11 -04:00
overflow: hidden;
2025-12-08 18:02:33 -06:00
background-color: #f9f9f9;
2025-08-18 10:37:48 -04:00
}
2025-09-24 18:34:13 -06:00
main {
position: relative;
}
2025-09-02 19:50:17 -04:00
footer {
2025-09-08 19:35:24 -04:00
position: relative;
2025-09-05 18:24:12 -04:00
display: flex;
justify-content: center;
2025-09-02 19:50:17 -04:00
text-align: center;
padding: 10px;
2025-09-24 14:05:51 -06:00
background-color: #003e79;
2025-09-08 19:35:24 -04:00
z-index: 0;
2025-09-08 20:12:11 -04:00
overflow: hidden;
2025-09-05 18:24:12 -04:00
}
footer p {
2025-09-02 19:50:17 -04:00
color: white;
2025-09-08 15:06:01 -04:00
max-width: 900px;
2025-09-08 19:35:24 -04:00
z-index: 2;
2026-02-05 13:26:17 -06:00
font-size: 1.4rem;
2025-09-02 19:50:17 -04:00
}
2025-09-12 18:12:38 -06:00
.mainContainer {
position: relative;
2025-09-19 18:54:47 -06:00
display: grid;
2025-09-12 18:12:38 -06:00
align-items: center;
2025-09-19 18:54:47 -06:00
justify-items: center;
2025-09-12 18:12:38 -06:00
height: 100%;
width: 100%;
}
2025-09-24 17:51:54 -06:00
@keyframes fadeInUp {
0% {
opacity: 0;
transform: translateY(20px);
}
2026-02-05 13:26:17 -06:00
2025-09-24 17:51:54 -06:00
100% {
opacity: 1;
transform: translateY(0);
}
}
2025-09-02 19:50:17 -04:00
.container {
2025-09-03 20:41:25 -04:00
display: flex;
flex-direction: column;
2025-09-02 19:50:17 -04:00
align-items: center;
justify-items: center;
position: relative;
padding: 1.5rem;
margin: 1.5rem auto;
border: 1px solid #d1d5db;
border-radius: 4px;
width: 90%;
2025-09-24 14:05:51 -06:00
max-width: 1500px;
2025-09-22 10:32:05 -06:00
height: 600px;
2025-09-02 19:50:17 -04:00
min-height: 520px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
overflow: hidden;
background-color: #f9f9f9;
z-index: 0;
2026-02-20 12:07:44 -06:00
animation: fadeInUp 1s ease forwards;
2025-09-02 19:50:17 -04:00
}
.containerSection {
2025-09-03 20:41:25 -04:00
position: relative;
width: 100%;
height: 100%;
2025-09-02 19:50:17 -04:00
display: flex;
flex-direction: column;
}
2025-09-05 12:11:32 -06:00
.containerForm {
2025-09-03 20:41:25 -04:00
width: 100%;
max-width: 450px;
2026-02-19 17:52:17 -06:00
gap: 1rem;
2025-09-03 20:41:25 -04:00
}
2025-09-02 19:50:17 -04:00
2025-09-03 20:41:25 -04:00
input,
select {
2025-09-02 19:50:17 -04:00
flex: 1;
2025-09-26 16:56:07 -06:00
width: 100%;
2025-09-02 19:50:17 -04:00
min-width: 200px;
2025-09-05 14:45:31 -04:00
max-width: 500px;
2025-09-28 01:59:16 -06:00
padding: 0.75rem;
2025-09-02 19:50:17 -04:00
border: 1px solid #cfcfcf;
2025-09-03 20:41:25 -04:00
background-color: #fff;
2025-09-02 19:50:17 -04:00
border-radius: 4px;
2025-10-08 12:01:52 -06:00
font-size: 1.5rem;
2025-09-02 19:50:17 -04:00
color: black;
2025-10-08 12:01:52 -06:00
height: 3.5rem;
2025-09-28 01:59:16 -06:00
}
input:focus,
select:focus {
background-color: #f9f9f9;
2025-10-06 17:26:14 -06:00
outline: none;
box-shadow: 0px 0px 8px 2px rgba(0, 62, 121, 0.5);
2025-09-28 01:59:16 -06:00
transition: all 0.2s ease-in-out;
2025-09-02 19:50:17 -04:00
}
2025-10-08 12:01:52 -06:00
select:-webkit-scrollbar {
width: 6px;
}
option {
font-size: 1.5rem;
}
2025-10-06 17:26:14 -06:00
input[type="checkbox"] {
2025-09-29 19:57:02 -06:00
min-width: 3rem;
}
2026-01-21 17:10:17 -06:00
.radio-grid {
display: flex;
gap: 2rem;
margin: 1rem 0;
}
.radio-card {
display: flex;
align-items: center;
gap: 1rem;
padding: 1.2rem 1.8rem;
border-radius: 12px;
border: 2px solid #e5e7eb;
cursor: pointer;
background: #fff;
transition: all 0.25s ease;
font-size: 1.4rem;
font-weight: 500;
}
.radio-card:hover {
border-color: #002b7f;
background: rgba(0, 43, 127, 0.05);
}
.radio-card input {
display: none;
}
.radio-ui {
width: 22px;
height: 22px;
border: 2px solid #002b7f;
border-radius: 50%;
position: relative;
flex-shrink: 0;
}
.radio-ui::after {
content: "";
width: 10px;
height: 10px;
background: #c9a227;
border-radius: 50%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
opacity: 0;
transition: opacity 0.2s ease;
}
2026-02-05 13:26:17 -06:00
.radio-card input:checked+.radio-ui::after {
2026-01-21 17:10:17 -06:00
opacity: 1;
}
2026-02-05 13:26:17 -06:00
.radio-card input:checked~.radio-text {
2026-01-21 17:10:17 -06:00
color: #002b7f;
font-weight: 600;
}
.radio-card input:checked {
2026-02-05 13:26:17 -06:00
+.radio-ui {
2026-01-21 17:10:17 -06:00
border-color: #002b7f;
}
}
@media (max-width: 640px) {
.radio-grid {
flex-direction: column;
}
}
2025-09-08 13:35:46 -04:00
label {
2025-10-08 12:01:52 -06:00
font-size: 1.5rem;
2025-09-08 13:35:46 -04:00
font-weight: bold;
display: block;
}
button {
2025-10-06 17:26:14 -06:00
font-size: 1.5rem;
2025-09-08 13:35:46 -04:00
padding: 1rem 1.75rem;
border-radius: 4px;
cursor: pointer;
2025-10-08 12:01:52 -06:00
height: 3.5rem;
2025-09-08 13:35:46 -04:00
}
2026-01-22 10:53:07 -06:00
button:disabled {
background-color: #bfc6d1;
cursor: not-allowed;
opacity: 0.7;
}
2025-09-02 19:50:17 -04:00
.groupInput {
display: flex;
flex-wrap: wrap;
gap: 10px;
align-items: center;
justify-content: space-between;
2025-10-08 12:01:52 -06:00
width: 100%;
2025-09-02 19:50:17 -04:00
}
.button {
font-weight: bold;
border: none;
color: #ffffff;
transition: background-color 0.2s ease;
max-width: 240px;
}
.buttonSearch {
background-color: #2563eb;
}
.buttonSearch:hover {
background-color: #1d4ed8;
}
.buttonCharge {
background-color: #16a34a;
}
.buttonCharge:hover {
background-color: #15803d;
}
2025-09-24 18:34:13 -06:00
.buttonCancel {
background-color: #d32f2f;
}
.buttonCancel:hover {
background-color: #d12020;
}
2025-09-03 20:41:25 -04:00
.absoluteButton {
position: absolute;
bottom: 1rem;
right: 1rem;
2025-09-02 19:50:17 -04:00
display: flex;
gap: 1rem;
}
ul {
list-style: none;
2025-09-08 13:35:46 -04:00
font-size: 1.5rem;
2025-09-02 19:50:17 -04:00
}
.containerInput {
display: flex;
flex-direction: column;
margin-bottom: 10px;
}
2025-09-05 18:24:12 -04:00
.containerButton {
display: flex;
gap: 10px;
justify-content: start;
align-items: center;
width: 100%;
}
2025-08-18 10:37:48 -04:00
a {
text-decoration: none;
}
2025-09-02 19:50:17 -04:00
.information {
display: flex;
flex-direction: column;
2025-10-08 12:01:52 -06:00
background-color: #ffffff;
2025-09-02 19:50:17 -04:00
border-radius: 4px;
2025-09-03 20:41:25 -04:00
width: 100%;
max-width: 450px;
2025-10-08 12:01:52 -06:00
margin-top: 1rem;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
overflow: hidden;
2025-10-14 14:27:03 -06:00
min-height: fit-content;
2025-10-08 12:01:52 -06:00
transition: box-shadow 0.3s ease, transform 0.3s ease;
2025-09-02 19:50:17 -04:00
}
2025-10-08 12:01:52 -06:00
.informationList {
list-style: none;
padding: 0 1rem;
margin: 0;
}
.informationItem {
display: flex;
justify-content: flex-start;
align-items: center;
padding: 5px 0;
border-bottom: 1px solid #e5e5e5;
2025-10-14 14:27:03 -06:00
height: 35px;
2025-10-08 12:01:52 -06:00
}
.informationItem:last-child {
border-bottom: none;
}
.informationKey {
font-weight: 600;
text-transform: capitalize;
2026-01-16 14:47:32 -06:00
min-width: 80px;
2025-10-08 12:01:52 -06:00
}
.informationValue {
color: #555;
2025-10-14 14:27:03 -06:00
font-size: 1.25rem;
2025-09-02 19:50:17 -04:00
}
.title {
top: 0;
left: 0;
width: 100%;
2025-10-08 12:01:52 -06:00
font-size: 2.5rem;
2025-09-02 19:50:17 -04:00
font-weight: bold;
text-align: start;
2025-10-06 17:26:14 -06:00
color: #bd8c01;
2025-09-02 19:50:17 -04:00
border-bottom: 1px solid #cfcfcf;
margin-bottom: 0.5rem;
2025-09-02 19:50:17 -04:00
}
form {
display: flex;
flex-direction: column;
width: 100%;
2025-09-03 20:41:25 -04:00
}
.padding {
display: flex;
flex-direction: column;
padding: 1rem;
}
.gap {
display: flex;
flex-direction: column;
2025-09-02 19:50:17 -04:00
gap: 1rem;
}
.toggleSection {
2025-09-03 20:41:25 -04:00
width: 100%;
2026-02-19 08:30:45 -06:00
max-width: fit-content;
min-width: 750px;
2025-09-02 19:50:17 -04:00
border-radius: 4px;
2025-10-08 12:01:52 -06:00
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
2026-01-13 18:51:56 -06:00
height: fit-content;
2025-10-14 14:27:03 -06:00
overflow: hidden;
2026-02-19 08:30:45 -06:00
scrollbar-width: none;
2025-09-02 19:50:17 -04:00
}
.toggleGroup {
display: flex;
background-color: #f3f4f6;
border-radius: 6px;
flex-wrap: wrap;
2025-09-12 18:12:38 -06:00
min-height: 45px;
2025-09-02 19:50:17 -04:00
}
.toggleButton {
flex: 1;
background-color: transparent;
border: none;
cursor: pointer;
border-radius: 4px;
transition: background-color 0.3s, color 0.3s;
font-weight: 500;
2025-09-22 11:57:52 -06:00
overflow: hidden;
2025-09-22 10:32:05 -06:00
max-height: 60px;
2025-09-24 16:22:31 -06:00
padding: 1rem 0.5rem;
min-width: 100px;
min-height: 45px;
2025-09-02 19:50:17 -04:00
}
.toggleButton.active {
2025-10-06 17:26:14 -06:00
font-weight: 600;
2025-10-08 12:01:52 -06:00
background-color: #ffffff;
2025-09-05 14:17:26 -04:00
color: rgb(1, 92, 184);
2025-09-03 20:41:25 -04:00
border-radius: 4px 4px 0 0;
2025-10-08 12:01:52 -06:00
border-bottom: none;
2025-10-14 14:27:03 -06:00
}
.toggleContent {
overflow-y: auto;
scrollbar-width: none;
2025-09-02 19:50:17 -04:00
}
2025-09-08 19:35:24 -04:00
p {
2025-09-08 13:35:46 -04:00
font-size: 1.5rem;
}
2025-09-08 19:35:24 -04:00
table {
width: 100%;
2025-10-08 12:01:52 -06:00
border-collapse: separate;
border-spacing: 0 1rem;
2025-09-08 19:35:24 -04:00
table-layout: auto;
2025-10-08 12:01:52 -06:00
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.5rem;
color: #333;
2025-09-08 19:35:24 -04:00
}
table th,
table td {
2025-11-28 19:49:48 -06:00
padding: 1rem 1.5rem;
2025-09-08 19:35:24 -04:00
}
table th {
2025-09-08 20:12:11 -04:00
position: sticky;
2025-10-08 12:01:52 -06:00
top: 0;
color: #ffffff;
2026-01-14 14:53:36 -06:00
background-color: #2563eb;
2025-10-08 12:01:52 -06:00
font-weight: 800;
text-transform: uppercase;
letter-spacing: 1px;
text-align: center;
z-index: 2;
border: none;
2025-11-28 19:49:48 -06:00
min-height: 35px;
2025-10-08 12:01:52 -06:00
}
table td {
text-align: center;
word-wrap: break-word;
overflow-wrap: break-word;
border: none;
2025-09-08 19:35:24 -04:00
}
table tr {
2025-10-08 12:01:52 -06:00
background-color: rgb(255, 255, 255);
transition: background-color 0.2s ease;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
thead tr {
background-color: #2563eb;
position: relative;
z-index: 1;
}
tbody tr {
transition: transform 0.3s ease, opacity 0.3s ease;
opacity: 1;
z-index: 0;
}
tbody tr.hidden {
transform: translateY(-10px);
opacity: 0;
height: 0;
}
table tr:nth-child(even) {
background-color: #f9f9f9;
}
table tr:hover {
background-color: #cfcfcf;
}
table th:first-child,
table td:first-child {
border-radius: 4px 0 0 4px;
}
table th:last-child,
table td:last-child {
border-radius: 0 4px 4px 0;
2025-09-08 19:35:24 -04:00
}
.tableContainer {
2025-09-08 20:12:11 -04:00
margin-top: 10px;
overflow-y: auto;
overflow-x: auto;
border-radius: 4px;
border: 1px solid #cfcfcf;
max-height: 430px;
scrollbar-color: rgb(1, 92, 184) rgba(0, 0, 0, 0);
background-color: #f9f9f9;
width: 100%;
2025-09-08 19:35:24 -04:00
}
.centerGrid {
display: grid;
2025-09-24 14:05:51 -06:00
grid-template-columns: auto 725px;
2025-09-08 19:35:24 -04:00
justify-content: center;
align-items: center;
}
2026-02-05 13:26:17 -06:00
2025-09-19 13:21:55 -06:00
.centerGrido {
display: grid;
grid-template-columns: auto 200px;
justify-content: center;
align-items: center;
}
2025-09-08 19:35:24 -04:00
2025-09-18 21:12:50 -06:00
.impressions-title {
2025-09-19 13:21:55 -06:00
font-size: 1.75rem;
font-weight: bold;
text-align: start;
2025-09-18 21:12:50 -06:00
}
2025-09-22 10:32:05 -06:00
.loginContainer {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
}
2025-09-24 16:22:31 -06:00
.pass {
display: flex;
width: 300px;
}
2025-09-24 18:34:13 -06:00
.containerAlert {
position: absolute;
background-color: #003e79;
z-index: 10;
}
2025-09-29 19:57:02 -06:00
.checkbox-grid label {
display: inline-flex;
align-items: center;
font-size: 13px;
cursor: pointer;
}
.checkbox-grid input[type="checkbox"] {
margin: 0;
padding: 0;
2026-02-05 13:26:17 -06:00
transform: scale(1);
/* mantiene el tamaño */
2025-09-29 19:57:02 -06:00
}
2025-09-23 18:36:21 -06:00
@media (max-width: 1330px) {
2025-09-24 16:22:31 -06:00
.centerGrid {
display: flex !important;
justify-content: center;
align-items: center;
}
2025-09-22 10:32:05 -06:00
}
2025-09-12 18:12:38 -06:00
@media (max-width: 1300px) {
.container {
width: 100%;
max-width: none;
}
2025-10-08 12:01:52 -06:00
.containerSection {
overflow: auto;
scrollbar-width: none;
}
2025-09-12 18:12:38 -06:00
}
2025-09-05 12:11:32 -06:00
@media (max-width: 800px) {
2025-09-02 19:50:17 -04:00
.container {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
width: 100%;
2025-09-24 14:05:51 -06:00
height: 650px;
max-height: 650px;
2025-09-02 19:50:17 -04:00
border-radius: 0;
}
2025-09-03 20:41:25 -04:00
.containerSection {
align-items: start;
2025-10-08 12:01:52 -06:00
scrollbar-width: none;
2025-09-03 20:41:25 -04:00
}
2025-09-12 13:17:01 -04:00
.centerGrid {
display: flex !important;
justify-content: center;
align-items: center;
}
2025-09-19 18:54:47 -06:00
footer p {
font-size: 1.2rem;
2025-09-22 10:32:05 -06:00
}
label {
font-size: 1.5rem;
}
input,
select {
font-size: 1.5rem;
}
button {
2025-09-23 18:36:21 -06:00
padding: 1rem 1.5rem;
}
2025-09-24 16:22:31 -06:00
.toggleButton {
2026-02-19 08:30:45 -06:00
padding: 0.5rem;
2025-09-24 16:22:31 -06:00
}
.toggleSection {
overflow: auto;
}
2025-08-18 10:37:48 -04:00
}
2025-09-02 19:50:17 -04:00
2025-09-05 12:11:32 -06:00
@media (max-height: 960px) {
2025-09-02 19:50:17 -04:00
.container {
2025-09-05 12:11:32 -06:00
margin: 0;
2025-09-02 19:50:17 -04:00
}
2025-09-12 18:12:38 -06:00
}
2025-09-22 10:32:05 -06:00
2026-02-19 08:30:45 -06:00
@media(max-width:785px) {
.toggleSection {
2026-02-19 15:25:50 -06:00
min-width: 100%;
2026-02-19 08:30:45 -06:00
}
}
@media (max-width: 700px) {
2025-09-22 10:32:05 -06:00
.title {
2025-09-24 17:51:54 -06:00
max-width: 250px;
2025-09-22 10:32:05 -06:00
overflow-wrap: break-word;
font-size: 2.2rem;
min-height: 50px;
align-items: center;
2025-09-22 10:32:05 -06:00
}
2026-02-19 08:30:45 -06:00
.toggleButton {
padding: 0;
}
2026-02-05 13:26:17 -06:00
}