2019-02-05 04:59:03 +01:00
|
|
|
/* Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
* License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
|
|
|
|
|
2017-08-10 11:02:32 +02:00
|
|
|
#header {
|
|
|
|
padding: 3px;
|
|
|
|
font-weight: bold;
|
|
|
|
border-bottom: 1px solid #aaa;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tdcenter {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
-webkit-user-drag: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hitem {
|
2017-08-10 11:17:28 +02:00
|
|
|
padding-right: 12px;
|
|
|
|
padding-left: 12px;
|
2017-08-10 11:02:32 +02:00
|
|
|
text-decoration: none;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
2020-01-23 00:02:42 +01:00
|
|
|
.nightMode .hitem {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2017-08-10 11:02:32 +02:00
|
|
|
.hitem:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2019-04-10 07:16:22 +02:00
|
|
|
|
|
|
|
.hitem:focus { outline: 0; }
|