44 lines
598 B
CSS
44 lines
598 B
CSS
.container {
|
|
width: 100%;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
font-size: 14px;
|
|
background: #ffffff;
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.table thead {
|
|
background: linear-gradient(135deg, #a5a5a5, #878787);
|
|
color: white;
|
|
}
|
|
|
|
.table th {
|
|
padding: 12px;
|
|
text-align: center;
|
|
}
|
|
|
|
.table td {
|
|
padding: 10px 12px;
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
|
|
.table tbody tr:hover {
|
|
background-color: #f5f8ff;
|
|
transition: 0.2s;
|
|
}
|
|
|
|
.total {
|
|
font-weight: bold;
|
|
color: #095bd6;
|
|
}
|
|
|
|
.empty {
|
|
text-align: center;
|
|
padding: 20px;
|
|
color: #999;
|
|
} |