Initial working, read-only console.

This commit is contained in:
Ian Gulliver
2016-05-10 23:55:34 +00:00
parent 12793caa96
commit bbf64c91de
3 changed files with 180 additions and 5 deletions

View File

@@ -0,0 +1,37 @@
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;
}