apple2js/js/components/css/DiskII.module.css

30 lines
514 B
CSS

.disk {
align-items: center;
display: flex;
flex-grow: 1;
max-width: 50%;
}
.diskLight {
margin: 5px;
background-image: url(../../../css/red-off-16.png);
flex-shrink: 0;
width: 16px;
height: 16px;
}
.diskLight.on {
background-image: url(../../../css/red-on-16.png);
}
.diskLabel {
color: #000;
font-family: sans-serif;
font-weight: bold;
margin-right: 0.5em;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
flex-grow: 1;
}