39 lines
528 B
CSS
39 lines
528 B
CSS
.expandable-info {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.expand-button {
|
|
background-color: #444;
|
|
color: white;
|
|
border: none;
|
|
padding: 8px 16px;
|
|
cursor: pointer;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.expand-button:hover {
|
|
background-color: #333;
|
|
}
|
|
|
|
.details-menu {
|
|
margin-top: 10px;
|
|
padding: 10px;
|
|
border: 1px solid #333;
|
|
border-radius: 4px;
|
|
background-color: white;
|
|
}
|
|
|
|
.detail-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.label {
|
|
font-weight: bold;
|
|
color: #333
|
|
}
|
|
|
|
.value {
|
|
color: #333;
|
|
} |