1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
.pdns-chart {
position: relative;
left: 40px;
z-index: -10; /* don't steal clicks from stuff it overlaps with */
}
.pdns-axis {
position: absolute;
top: 0;
bottom: 0;
width: 40px;
}
#connection-status, #connection-error {
color: red;
}
.topbar {
background: url(powerdns-logo-220px.png) no-repeat;
height: 30px;
padding-left: 250px;
padding-top: 5px;
}
.charts-container {
display: inline-block;
width: 500px;
vertical-align: top;
}
.charts-container .chart {
}
.charts-container h2 {
padding-left: 40px;
text-align: center;
}
.all-tables {
display: inline-block;
min-width: 700px;
vertical-align: top;
}
.table-container {
display: inline-block;
width: 330px;
vertical-align: top;
margin-right: 20px;
}
.table-container .filter {
height: 20px;
}
h2 {
font-size: 16pt;
}
.stats-table {
}
.stats-table table,
.stats-table th,
.stats-table td {
/*border: 1px solid #aaaaaa;*/
border-left: 1px solid #aaaaaa;
border-right: 1px solid #aaaaaa;
border-collapse: collapse;
text-overflow: ellipsis;
}
.stats-table td,
.stats-table th {
padding-left: 4px;
padding-right: 4px;
}
.stats-table th {
text-align: left;
border: 1px solid #aaaaaa;
}
.stats-table table {
width: 100%;
margin-top: 30px;
border: 1px solid #aaaaaa;
}
.stats-table table tr:last-child {
border: 1px solid #aaaaaa;
}
table.two-col th:first-child { width: 25%; }
table.three-col th:first-child { width: 25%; }
table.three-col th:last-child { width: 20%; }
.stats-table td:empty:after{
content: "\00a0"; /* non-breaking space */
}
|