Spaces:
Sleeping
Sleeping
File size: 3,182 Bytes
e287cb3 9887a53 e287cb3 9887a53 e287cb3 9887a53 e287cb3 aac1b75 9887a53 aac1b75 9887a53 aac1b75 ce51bcc e287cb3 9887a53 e287cb3 9887a53 ce51bcc e287cb3 ce51bcc e287cb3 9887a53 e287cb3 9887a53 e287cb3 9887a53 e287cb3 9887a53 e287cb3 a8a5f0d e287cb3 a8a5f0d ce51bcc e287cb3 9887a53 f3ad16f 9887a53 f3ad16f 9887a53 f3ad16f 9887a53 f3ad16f 9887a53 f3ad16f 9887a53 f3ad16f 9887a53 c1afd13 ce51bcc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 | body {
background: linear-gradient(135deg, #eaf8ee 0%, #b7e3d0 100%);
font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
color: #263238;
margin: 0;
padding: 0;
min-height: 100vh;
}
h2 {
text-align: center;
margin-top: 32px;
font-weight: 700;
letter-spacing: 1px;
color: #20603d;
text-shadow: 0 2px 10px #ffffffb0;
}
.container {
display: flex;
justify-content: center;
align-items: flex-start;
margin: 32px auto 0 auto;
width: 95%;
max-width: 1200px;
}
#tabla {
border-collapse: separate;
border-spacing: 0;
background: #fff;
box-shadow: 0 4px 22px rgba(32,96,61,0.13);
border-radius: 16px;
overflow: hidden;
font-size: 15px;
width: 70%;
margin-right: 28px;
transition: box-shadow 0.2s;
}
#tabla th, #tabla td {
border: none;
padding: 10px 12px;
text-align: center;
}
#tabla th {
background: linear-gradient(90deg, #20603d 70%, #49b87a 100%);
color: #fff;
font-weight: 700;
letter-spacing: 0.5px;
font-size: 15px;
border-bottom: 2px solid #b7e3d0;
}
#tabla tr {
transition: background 0.2s;
}
#tabla tbody tr:nth-child(even) {
background: #f0f4f7;
}
#tabla tbody tr.selected {
background-color: #d4e8a9 !important;
}
#tabla tbody tr:hover {
background: #e3f1d2;
cursor: pointer;
}
#resumen {
background: #fff;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.04);
padding: 20px 24px;
font-size: 1.08em;
color: #20603d;
min-height: 40px;
transition: background 0.2s;
width: 30%; /* Ajusta el ancho del resumen */
}
#paginacion {
text-align: center;
margin-top: 32px;
margin-bottom: 30px;
}
#paginacion button {
margin: 0 3px;
padding: 8px 18px;
border-radius: 8px;
border: none;
background: linear-gradient(90deg, #20603d 70%, #49b87a 100%);
color: #fff;
font-weight: 700;
cursor: pointer;
font-size: 1em;
transition: background 0.18s, transform 0.12s;
box-shadow: 0 2px 8px #20603d22;
outline: none;
}
#paginacion button[disabled] {
background: #b5b5b5;
cursor: not-allowed;
color: #fff;
box-shadow: none;
}
#paginacion button.actual {
background: #d4e8a9;
color: #20603d;
border: 2px solid #49b87a;
transform: scale(1.08);
}
#paginacion button:hover:not([disabled]):not(.actual) {
background: linear-gradient(90deg, #49b87a 70%, #20603d 100%);
color: #fff;
transform: scale(1.06);
}
@media (max-width: 1000px) {
.container {
flex-direction: column;
align-items: center;
}
#tabla, #resumen {
width: 98%;
max-width: 98%;
margin: 0 auto 20px auto;
}
#resumen {
margin-top: 0;
}
.resultado-celda {
text-align: center;
font-size: 1.2em;
}
.resultado-celda .emoji {
display: inline-block;
margin-bottom: 6px;
}
.botones-resultado button {
background: none;
border: none;
font-size: 1.1em;
cursor: pointer;
margin: 0 4px;
outline: none;
transition: transform 0.1s;
}
.botones-resultado button:hover {
transform: scale(1.2);
}
}
|