oldbackup / static /SummarizationTable.css
bsjghee001's picture
Duplicate from FYP-S1-21/Refineverse_Plugin
147da27
body{
background-image:url("../static/Images/Background.jpg");
background-repeat: no-repeat;
background-size: cover;
}
#summarization-table {
width: 100%;
}
#summarization-table th,
#summarization-table td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
#summarization-table th:first-child {
border-left: none;
}
#summarization-table th:last-child {
border-right: none;
}
#summarization-table th:not(:first-child) {
border-left: none;
border-right: none;
}
#summarization-table th div {
border-bottom: 1px solid #ddd;
padding: 8px;
}
#summarization-table td div {
padding: 8px;
}
#summarization-table thead th {
background-color: #f2f2f2;
}
#summarization-table tbody tr:nth-child(even) {
background-color: #f2f2f2;
}
#summarization-table tbody tr:hover {
background-color: #ddd;
}