131 lines
2.1 KiB
Plaintext
131 lines
2.1 KiB
Plaintext
@import "_notify.less";
|
|
@import "_menu.less";
|
|
@import "_status.less";
|
|
@import "_login.less";
|
|
@import "leaflet.css";
|
|
@import "_map.less";
|
|
|
|
body {
|
|
position: relative;
|
|
margin: 0px;
|
|
font-size: 15px;
|
|
color: #333;
|
|
line-height: 1.3;
|
|
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
|
|
}
|
|
.withTextMargins {
|
|
margin-left: 0.5em;
|
|
margin-right: 0.5em;
|
|
}
|
|
span.online {
|
|
color: #009ee0;
|
|
}
|
|
span.offline {
|
|
color: #dc0067;
|
|
}
|
|
.pinger div {
|
|
display: inline-block;
|
|
width: 4px;
|
|
height: 4px;
|
|
margin-right: 2px;
|
|
background-color: red;
|
|
}
|
|
.pinger .online {
|
|
background-color: green;
|
|
}
|
|
h1 {
|
|
border-bottom: 4px solid #dc0067;
|
|
}
|
|
|
|
thead {
|
|
font-size: 1.3em;
|
|
font-weight: bold;
|
|
cursor: default;
|
|
}
|
|
thead tr th{
|
|
border-bottom: 4px solid #dc0067;
|
|
}
|
|
table th > input {
|
|
border: none;
|
|
color: #000;
|
|
font-weight: bold;
|
|
background: #fff;
|
|
}
|
|
table th.sort-header:after {
|
|
font-size: 0.6em;
|
|
}
|
|
table th.sort-header.sort-down:after {
|
|
content: " \25BC"
|
|
}
|
|
table th.sort-header.sort-up:after {
|
|
content: " \25B2"
|
|
}
|
|
table th.sort-header:not(.sort-down):not(.sort-up):after {
|
|
content: " \25B4\25BE";
|
|
color: grey;
|
|
}
|
|
table.nodes, table.stats {
|
|
width: 100%;
|
|
}
|
|
|
|
table.nodes td > span{
|
|
display: block;
|
|
}
|
|
table.nodes tbody tr:nth-child(even) {
|
|
background: #eee;
|
|
}
|
|
table.nodes tbody tr:nth-child(odd) {
|
|
background: #fff;
|
|
}
|
|
table.nodes tbody tr:hover {
|
|
background: #ccc;
|
|
}
|
|
table.nodes tbody tr td.offline,
|
|
table.nodes tbody tr td.offline:hover{
|
|
background: #dc0067;
|
|
}
|
|
table.nodes tbody tr td.unseen{
|
|
background: #009ee0;
|
|
}
|
|
|
|
table tr.line td,table tr.line th {
|
|
border-bottom: 1px solid #ffb400;
|
|
}
|
|
table.stats td {
|
|
text-align: center;
|
|
}
|
|
|
|
.btn {
|
|
display: inline-block;
|
|
padding: .3em .5em;
|
|
border-radius: 1em;
|
|
color: #fff;
|
|
background-color: #dc0067;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
}
|
|
.btn:hover {
|
|
background: lighten(#dc0067, 5%);
|
|
}
|
|
|
|
a.btn:hover {
|
|
text-decoration: none;
|
|
}
|
|
a {
|
|
color: #dc0067;
|
|
text-decoration: none;
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
border: none;
|
|
border-bottom: 1px solid grey;
|
|
background: none;
|
|
padding: 0px;
|
|
font-size: 15px;
|
|
color: #333;
|
|
line-height: 1.3;
|
|
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
|
|
}
|