57 lines
871 B
Plaintext
57 lines
871 B
Plaintext
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: #f8f9fa;
|
|
height: 100vh;
|
|
}
|
|
.header {
|
|
background-color: #007bff;
|
|
padding: 15px;
|
|
text-align: center;
|
|
}
|
|
.title {
|
|
color: #fff;
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
}
|
|
.table-container {
|
|
margin: 20px;
|
|
background-color: #fff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
}
|
|
.table {
|
|
width: 100%;
|
|
}
|
|
.table-row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
.table-header {
|
|
background-color: #f1f1f1;
|
|
font-weight: bold;
|
|
}
|
|
.table-cell {
|
|
flex: 1;
|
|
padding: 10px;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
}
|
|
.detail-button {
|
|
background-color: #007bff;
|
|
color: #fff;
|
|
padding: 8px 12px;
|
|
border: none;
|
|
border-radius: 5px;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
}
|
|
.detail-button:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
|