38 lines
568 B
CSS
38 lines
568 B
CSS
body {
|
|
font-family: "proxima-nova", sans-serif;
|
|
color: #424242;
|
|
}
|
|
|
|
imageTypeSection {
|
|
display: table;
|
|
border-spacing: 3px;
|
|
}
|
|
|
|
imageTypeSection::before {
|
|
font-size: x-large;
|
|
font-weight: bold;
|
|
content: attr(data-key);
|
|
}
|
|
|
|
instanceSection {
|
|
display: table-row;
|
|
}
|
|
|
|
instanceSection:nth-child(2n+1) {
|
|
background-color: #e9e9e9;
|
|
}
|
|
|
|
instanceSection:hover {
|
|
background-color: #ff9900 !important;
|
|
}
|
|
|
|
hostname, lastSeen, uptime, timestamp, volumeID {
|
|
font-family: "droid-sans-mono";
|
|
display: table-cell;
|
|
padding: 2px;
|
|
}
|
|
|
|
volumeID {
|
|
cursor: pointer;
|
|
}
|