File size: 1,623 Bytes
1a11305 |
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 |
#my-table {
width: 100%;
border-collapse: collapse;
/* border-radius: 8px; */
border-radius: 8px;
}
.container {
margin: 2%;
}
#table-container {
border-radius: 12px;
}
#my-table th,
#my-table td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
tr:nth-child(odd) {
background: #e6e1e1;
}
#my-table th {
background-color: #a7cefa;
color: white;
}
#table-container button {
display: inline-block;
padding: 6px 12px;
margin: 10px 0;
cursor: pointer;
}
#table-container button:hover {
/* background-color: #45a049; */
border-color: #0F79EF;
}
#my-table {
width: 100%;
border-collapse: collapse;
border-radius: 8px;
/* Add border radius for roundish feel */
}
#my-table th,
#my-table td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
color: #333;
/* Set text color */
}
tr:nth-child(odd) {
background: #f9f9f9;
/* Lighter background color for odd rows */
}
#my-table th {
background-color: #4a90e2;
/* Blue background for table header */
color: white;
}
#table-container button {
display: inline-block;
padding: 6px 12px;
margin: 10px 0;
cursor: pointer;
background-color: #4a90e2;
/* Blue button background */
color: white;
/* Button text color */
border: 1px solid #4a90e2;
/* Button border color */
border-radius: 4px;
/* Button border radius */
}
#table-container button:hover {
background-color: #0F79EF;
/* Darker blue on hover */
border-color: #0F79EF;
/* Darker blue for border on hover */
} |