28 lines
416 B
CSS
28 lines
416 B
CSS
.container {
|
|
height: 28px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin: 2px;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
color: #c0c0c0;
|
|
background-color: #808080;
|
|
}
|
|
|
|
.active {
|
|
color: white;
|
|
background-color: #000082;
|
|
}
|
|
|
|
.title {
|
|
display: flex;
|
|
flex-direction: row;
|
|
font-weight: bold;
|
|
gap: 7px;
|
|
padding-left: 5px;
|
|
}
|
|
|
|
.icon {
|
|
font-size: 10pt;
|
|
}
|