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 */
|
|
|
|
|
2022-10-29 02:48:53 +02:00
|
|
|
@use "root-vars";
|
|
|
|
@use "sass/vars" as *;
|
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 {
|
2022-10-29 02:48:53 +02:00
|
|
|
--focus-color: #{palette-of(border-focus)};
|
2021-08-28 21:30:07 +02:00
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2022-10-29 02:48:53 +02:00
|
|
|
#innertable {
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#middle td[align="center"] {
|
|
|
|
padding-top: 10px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2017-08-10 11:02:32 +02:00
|
|
|
button {
|
|
|
|
min-width: 60px;
|
|
|
|
white-space: nowrap;
|
2018-09-07 07:51:21 +02:00
|
|
|
margin: 0.5em;
|
2022-11-02 09:18:21 +01:00
|
|
|
position: relative;
|
2017-08-10 11:02:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.hitem {
|
|
|
|
margin-top: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stat {
|
2022-10-29 02:48:53 +02:00
|
|
|
padding-top: 10px;
|
2020-12-26 15:50:09 +01:00
|
|
|
|
|
|
|
@media (max-width: 583px) {
|
|
|
|
display: none;
|
|
|
|
}
|
2017-08-10 11:02:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.stat2 {
|
2022-10-29 02:48:53 +02:00
|
|
|
padding-top: 10px;
|
2017-08-10 11:02:32 +02:00
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2020-10-05 22:18:46 +02:00
|
|
|
#ansbut {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
2022-04-27 11:26:16 +02:00
|
|
|
:focus {
|
2022-10-29 02:48:53 +02:00
|
|
|
border-color: color(border-focus);
|
2022-02-07 10:41:19 +01:00
|
|
|
}
|
|
|
|
|
2022-10-29 02:48:53 +02:00
|
|
|
.nobold,
|
|
|
|
.stattxt {
|
|
|
|
position: absolute;
|
2022-11-02 09:18:21 +01:00
|
|
|
white-space: nowrap;
|
2022-11-23 07:50:15 +01:00
|
|
|
font-size: small;
|
2022-11-02 09:18:21 +01:00
|
|
|
top: -3px;
|
2022-10-29 02:48:53 +02:00
|
|
|
left: 50%;
|
2022-11-02 09:18:21 +01:00
|
|
|
transform: translate(-50%, -100%);
|
2017-08-10 11:02:32 +02:00
|
|
|
font-weight: normal;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spacer {
|
|
|
|
height: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spacer2 {
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#outer {
|
2022-10-29 02:48:53 +02:00
|
|
|
border-top: 1px solid color(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
|
|
|
}
|
|
|
|
|
2020-01-23 06:08:10 +01:00
|
|
|
.nightMode {
|
|
|
|
#outer {
|
2022-10-29 02:48:53 +02:00
|
|
|
border-top-color: color(border-subtle);
|
2020-01-23 06:08:10 +01:00
|
|
|
}
|
|
|
|
}
|