mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
27 lines
493 B
CSS
27 lines
493 B
CSS
.viewer_ModelView_container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.viewer_ModelSelectListView {
|
|
box-sizing: border-box;
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
overflow: auto;
|
|
}
|
|
|
|
.viewer_ModelSelectListView li {
|
|
padding: 4px 8px;
|
|
}
|
|
|
|
.viewer_ModelSelectListView li:hover {
|
|
color: hsl(200, 25%, 85%);
|
|
background-color: hsl(0, 0%, 25%);
|
|
}
|
|
|
|
.viewer_ModelSelectListView li.active {
|
|
color: hsl(200, 50%, 85%);
|
|
background-color: hsl(0, 0%, 30%);
|
|
}
|