mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
28 lines
550 B
CSS
28 lines
550 B
CSS
.viewer_model_ModelView_container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.viewer_model_CharacterClassSelectionView {
|
|
box-sizing: border-box;
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
overflow: auto;
|
|
}
|
|
|
|
.viewer_model_CharacterClassSelectionView li {
|
|
padding: 4px 8px;
|
|
}
|
|
|
|
.viewer_model_CharacterClassSelectionView li:hover {
|
|
color: hsl(0, 0%, 90%);
|
|
background-color: hsl(0, 0%, 18%);
|
|
}
|
|
|
|
.viewer_model_CharacterClassSelectionView li.active {
|
|
color: hsl(0, 0%, 90%);
|
|
background-color: hsl(0, 0%, 21%);
|
|
}
|
|
|