Files
iconograph/server/static/control.css

118 lines
1.6 KiB
CSS
Raw Permalink Normal View History

2016-05-10 23:55:34 +00:00
body {
}
container {
2016-05-10 23:55:34 +00:00
font-family: "proxima-nova", sans-serif;
color: #424242;
display: flex;
width: 100%;
flex-direction: column;
align-items: center;
}
overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1;
display: flex;
flex-direction: column;
align-items: center;
max-height: 100%;
overflow: scroll;
2016-05-10 23:55:34 +00:00
}
instances, versions {
2016-05-10 23:55:34 +00:00
display: table;
border-spacing: 3px;
margin: 10px;
2016-05-10 23:55:34 +00:00
}
instances::before, versions::before {
display: block;
2016-05-10 23:55:34 +00:00
font-size: x-large;
font-weight: bold;
content: attr(data-key);
}
versions {
display: none;
padding: 10px;
background: white;
border: 1px solid black;
}
versions.live {
display: table;
position: relative;
}
close {
position: absolute;
top: 5px;
right: 5px;
font-size: xx-large;
cursor: pointer;
}
versionList {
display: table-row-group;
}
headers, instance, version {
2016-05-10 23:55:34 +00:00
display: table-row;
}
instance:nth-child(2n) {
2016-05-10 23:55:34 +00:00
background-color: #e9e9e9;
}
instance:hover {
2016-05-10 23:55:34 +00:00
background-color: #ff9900 !important;
}
2016-11-15 22:18:27 +00:00
instance.stale {
background-color: rgba(255, 0, 0, 0.4) !important;
}
header {
display: table-cell;
text-align: center;
color: #bcbcbc;
white-space: nowrap;
padding: 2px;
}
2016-05-11 20:33:26 +00:00
hostname, lastReport, uptime, timestamp, volumeID, reboot, command, status {
2016-05-10 23:55:34 +00:00
font-family: "droid-sans-mono";
display: table-cell;
padding: 2px;
text-align: right;
2016-05-10 23:55:34 +00:00
}
2016-05-11 20:36:52 +00:00
status {
min-width: 20em;
2016-05-11 20:38:51 +00:00
text-align: left;
2016-05-11 20:36:52 +00:00
}
2016-05-10 23:55:34 +00:00
volumeID {
cursor: pointer;
}
2016-05-11 00:24:56 +00:00
instance.live reboot {
cursor: pointer;
color: #3299bb;
}
command {
2016-05-11 00:24:56 +00:00
cursor: pointer;
color: #3299bb;
}
hostnameLabel {
font-family: "droid-sans-mono";
font-size: x-large;
font-weight: bold;
}