27 lines
404 B
CSS
27 lines
404 B
CSS
.character {
|
|
width: 100%;
|
|
}
|
|
|
|
.character > select {
|
|
background-color: #1d1d1d;
|
|
color: #c5c5c5;
|
|
height: 24px;
|
|
padding-left: 5px;
|
|
width: calc(100% - 20px);
|
|
}
|
|
|
|
.character > button {
|
|
background-color: #1d1d1d;
|
|
color: #c5c5c5;
|
|
cursor: pointer;
|
|
height: 24px;
|
|
text-align: center;
|
|
width: 20px;
|
|
}
|
|
|
|
.character > button.noCharacter {
|
|
text-align: left;
|
|
padding-left: 5px;
|
|
width: 100%;
|
|
}
|