freifunkmanager/webroot/css/styles.less

131 lines
2.1 KiB
Plaintext
Raw Normal View History

@import "_notify.less";
@import "_menu.less";
@import "_status.less";
@import "_login.less";
2019-06-23 02:04:47 +02:00
@import "leaflet.css";
@import "_map.less";
body {
2017-05-16 19:18:35 +02:00
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;
}
2017-05-16 00:22:15 +02:00
span.online {
2017-05-16 19:18:35 +02:00
color: #009ee0;
2017-05-16 00:22:15 +02:00
}
span.offline {
2017-05-16 19:18:35 +02:00
color: #dc0067;
2017-05-16 00:22:15 +02:00
}
2019-06-10 13:38:21 +02:00
.pinger div {
display: inline-block;
width: 4px;
height: 4px;
margin-right: 2px;
background-color: red;
}
.pinger .online {
background-color: green;
}
2017-05-15 21:59:48 +02:00
h1 {
2017-05-16 19:18:35 +02:00
border-bottom: 4px solid #dc0067;
2017-05-15 21:59:48 +02:00
}
2017-05-09 20:40:18 +02:00
thead {
2017-05-16 19:18:35 +02:00
font-size: 1.3em;
font-weight: bold;
cursor: default;
2017-05-09 20:40:18 +02:00
}
thead tr th{
2017-05-16 19:18:35 +02:00
border-bottom: 4px solid #dc0067;
2017-05-09 20:40:18 +02:00
}
2017-05-12 21:32:10 +02:00
table th > input {
2017-05-16 19:18:35 +02:00
border: none;
color: #000;
font-weight: bold;
background: #fff;
2017-05-12 21:32:10 +02:00
}
2018-08-10 11:52:46 +02:00
table th.sort-header:after {
font-size: 0.6em;
}
table th.sort-header.sort-down:after {
2017-05-16 19:18:35 +02:00
content: " \25BC"
2017-05-12 21:32:10 +02:00
}
2018-08-10 11:52:46 +02:00
table th.sort-header.sort-up:after {
2017-05-16 19:18:35 +02:00
content: " \25B2"
2017-05-12 21:32:10 +02:00
}
2018-08-10 11:52:46 +02:00
table th.sort-header:not(.sort-down):not(.sort-up):after {
2017-05-16 19:18:35 +02:00
content: " \25B4\25BE";
2018-08-10 11:52:46 +02:00
color: grey;
2017-05-12 21:32:10 +02:00
}
2017-05-15 21:59:48 +02:00
table.nodes, table.stats {
2017-05-16 19:18:35 +02:00
width: 100%;
2017-05-12 21:32:10 +02:00
}
2017-05-09 20:40:18 +02:00
2017-05-12 21:32:10 +02:00
table.nodes td > span{
2017-05-16 19:18:35 +02:00
display: block;
2017-05-12 21:32:10 +02:00
}
table.nodes tbody tr:nth-child(even) {
2017-05-16 19:18:35 +02:00
background: #eee;
2017-05-09 20:40:18 +02:00
}
2017-05-12 21:32:10 +02:00
table.nodes tbody tr:nth-child(odd) {
2017-05-16 19:18:35 +02:00
background: #fff;
2017-05-12 21:32:10 +02:00
}
table.nodes tbody tr:hover {
2017-05-16 19:18:35 +02:00
background: #ccc;
2017-05-12 21:32:10 +02:00
}
2018-08-10 11:52:46 +02:00
table.nodes tbody tr td.offline,
table.nodes tbody tr td.offline:hover{
2017-05-16 19:18:35 +02:00
background: #dc0067;
2017-05-09 20:40:18 +02:00
}
2018-08-10 11:52:46 +02:00
table.nodes tbody tr td.unseen{
background: #009ee0;
}
2017-05-09 20:40:18 +02:00
2017-05-15 21:59:48 +02:00
table tr.line td,table tr.line th {
2017-05-16 19:18:35 +02:00
border-bottom: 1px solid #ffb400;
2017-05-15 21:59:48 +02:00
}
table.stats td {
2017-05-16 19:18:35 +02:00
text-align: center;
2017-05-15 21:59:48 +02:00
}
2017-05-12 21:32:10 +02:00
.btn {
2017-05-16 19:18:35 +02:00
display: inline-block;
padding: .3em .5em;
border-radius: 1em;
color: #fff;
background-color: #dc0067;
text-align: center;
cursor: pointer;
2017-05-12 21:32:10 +02:00
}
.btn:hover {
2017-05-16 19:18:35 +02:00
background: lighten(#dc0067, 5%);
}
a.btn:hover {
2017-05-16 19:18:35 +02:00
text-decoration: none;
}
a {
2017-05-16 19:18:35 +02:00
color: #dc0067;
text-decoration: none;
}
2018-08-10 11:52:46 +02:00
input {
border: none;
2018-08-10 11:52:46 +02:00
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;
}