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 */
|
|
|
|
|
2021-10-31 00:29:22 +02:00
|
|
|
@use "sass/card-counts";
|
2020-01-23 06:08:10 +01:00
|
|
|
|
2021-08-28 21:30:07 +02:00
|
|
|
:root {
|
|
|
|
--focus-color: #0078d7;
|
|
|
|
|
|
|
|
.isMac {
|
|
|
|
--focus-color: rgba(0 103 244 / 0.247);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-10 11:02:32 +02:00
|
|
|
body {
|
2020-01-23 06:08:10 +01:00
|
|
|
margin: 0;
|
2017-08-10 11:02:32 +02:00
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
min-width: 60px;
|
|
|
|
white-space: nowrap;
|
2018-09-07 07:51:21 +02:00
|
|
|
margin: 0.5em;
|
2017-08-10 11:02:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.hitem {
|
|
|
|
margin-top: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stat {
|
|
|
|
padding-top: 5px;
|
2020-12-26 15:50:09 +01:00
|
|
|
|
|
|
|
@media (max-width: 583px) {
|
|
|
|
display: none;
|
|
|
|
}
|
2017-08-10 11:02:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.stat2 {
|
|
|
|
padding-top: 3px;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stattxt {
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2020-10-05 22:18:46 +02:00
|
|
|
#ansbut {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.focus {
|
2021-08-28 21:30:07 +02:00
|
|
|
outline: 5px auto var(--focus-color);
|
2020-10-05 22:18:46 +02:00
|
|
|
|
2020-10-05 22:54:23 +02:00
|
|
|
#innertable:focus-within & {
|
|
|
|
outline: unset;
|
|
|
|
|
|
|
|
&:focus {
|
2021-08-28 21:30:07 +02:00
|
|
|
outline: 5px auto var(--focus-color);
|
2020-10-05 22:54:23 +02:00
|
|
|
}
|
2020-10-05 22:18:46 +02:00
|
|
|
}
|
|
|
|
}
|
2018-09-28 09:52:10 +02:00
|
|
|
|
2017-08-10 11:02:32 +02:00
|
|
|
.nobold {
|
|
|
|
font-weight: normal;
|
|
|
|
display: inline-block;
|
|
|
|
padding-top: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spacer {
|
|
|
|
height: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spacer2 {
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#outer {
|
2020-08-27 07:57:24 +02:00
|
|
|
border-top: 1px solid var(--border);
|
2020-11-08 19:14:37 +01:00
|
|
|
/* Better compatibility with graphics pad/touchscreen */
|
|
|
|
-webkit-user-select: none;
|
2017-08-10 11:02:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#innertable {
|
|
|
|
padding: 3px;
|
|
|
|
}
|
2020-01-23 06:08:10 +01:00
|
|
|
|
|
|
|
.nightMode {
|
|
|
|
#outer {
|
2020-08-27 07:57:24 +02:00
|
|
|
border-top-color: var(--faint-border);
|
2020-01-23 06:08:10 +01:00
|
|
|
}
|
|
|
|
}
|