44 lines
789 B
CSS
44 lines
789 B
CSS
@charset "UTF-8";
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
text-decoration: none;
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
|
|
.table_base {
|
|
width: 80%;
|
|
margin: auto;
|
|
border-collapse: collapse;
|
|
margin: 20px auto 20px auto;
|
|
}
|
|
.table_base th, .table_base td {
|
|
border: 1px solid #ddd; /* Añade bordes de 1 píxel de ancho y color gris claro */
|
|
padding: 8px;
|
|
text-align: left;
|
|
}
|
|
|
|
.table_base th {
|
|
background-color: #f2f2f2;
|
|
}
|
|
|
|
.table_base tfoot {
|
|
font-weight: bold;
|
|
}
|
|
|
|
|
|
.colrowspan{
|
|
width: 80%;
|
|
margin: auto;
|
|
border-collapse: collapse;
|
|
margin: 20px auto 20px auto;
|
|
}
|
|
.colrowspan th, .colrowspan td {
|
|
border: 2px solid black; /* Añade bordes de 1 píxel de ancho y color gris claro */
|
|
padding: 8px;
|
|
text-align: center;
|
|
height: 80px;
|
|
}
|
|
|