|
|
(No se muestran 21 ediciones intermedias del mismo usuario) |
Línea 1: |
Línea 1: |
| /* Estilos generales para la tabla */
| |
| .wikitable {
| |
| border-collapse: collapse;
| |
| width: 100%;
| |
| background-color: #f9f9f9;
| |
| }
| |
|
| |
|
| .wikitable th, .wikitable td {
| |
| border: 1px solid #ddd;
| |
| padding: 8px;
| |
| text-align: center;
| |
| }
| |
|
| |
| /* Estilo para las celdas destacadas */
| |
| .wikitable td.highlight {
| |
| background-color: #ffd454;
| |
| font-weight: bold;
| |
| }
| |
|
| |
| /* Estilo para las imágenes en la tabla */
| |
| .wikitable img {
| |
| max-width: 100%;
| |
| height: auto;
| |
| }
| |
|
| |
| /* Estilo para la celda que ocupa varias columnas */
| |
| .wikitable td.colspan {
| |
| background-color: #ffd454;
| |
| font-weight: bold;
| |
| width: 16.666%;
| |
| }
| |