mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
39 lines
757 B
CSS
39 lines
757 B
CSS
|
.disk {
|
||
|
align-items: center;
|
||
|
display: flex;
|
||
|
flex-grow: 1;
|
||
|
}
|
||
|
|
||
|
.diskLight {
|
||
|
margin: 5px;
|
||
|
background-image: url(../../../css/green-off-16.png);
|
||
|
background-size: 16px 16px;
|
||
|
flex-shrink: 0;
|
||
|
width: 16px;
|
||
|
height: 16px;
|
||
|
}
|
||
|
|
||
|
.diskLight.on {
|
||
|
background-image: url(../../../css/green-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;
|
||
|
}
|
||
|
|
||
|
@media only screen and (min-resolution: 1.25dppx) {
|
||
|
.diskLight {
|
||
|
background-image: url(../../../css/green-off-32.png);
|
||
|
}
|
||
|
.diskLight.on {
|
||
|
background-image: url(../../../css/green-on-32.png);
|
||
|
}
|
||
|
}
|