remove table global styles

This commit is contained in:
Ahmed 2024-09-12 15:04:36 +03:00
parent ff334b7e89
commit a1e0399a04
1 changed files with 37 additions and 2 deletions

View File

@ -183,14 +183,14 @@ body {
font-size: small; font-size: small;
} }
table, /* table,
th, th,
td { td {
border: 1px solid black; border: 1px solid black;
border-collapse: collapse; border-collapse: collapse;
background-color: aliceblue; background-color: aliceblue;
padding: 4px; padding: 4px;
} } */
.visible { .visible {
display: block; display: block;
@ -415,3 +415,38 @@ footer {
} }
#excelTable {
font-family: Calibri, sans-serif;
font-size: 15px;
text-align: center;
border-style: none;
border-collapse: collapse;
min-width: 680px;
}
/* #excelTable tr td:nth-child(2) {
background-color: yellow; /* Change background color for the second column */
/* } */
#excelTable tr td {
text-align: center;
padding: 0px;
background-color: white;
/* border: 1px solid black; */
}
#excelTableContainer {
margin: auto;
text-align: -webkit-center;
text-align: center;
/* margin-top: 5px;
margin-right: 10px;
margin-bottom: 0px;
margin-left: 10px; */
padding: 5px;
background-color: #c8e4ef;
width: fit-content;
border-radius: 10px;
}