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-07-28 08:19:06 +02:00
|
|
|
.field {
|
2020-08-27 07:57:24 +02:00
|
|
|
border: 1px solid var(--border);
|
|
|
|
background: var(--frame-bg);
|
2017-07-28 08:19:06 +02:00
|
|
|
padding: 5px;
|
2017-11-29 07:19:34 +01:00
|
|
|
overflow-wrap: break-word;
|
2020-07-02 01:51:50 +02:00
|
|
|
overflow: auto;
|
2020-12-21 03:13:31 +01:00
|
|
|
|
|
|
|
&:empty::after {
|
|
|
|
content: "\A";
|
|
|
|
white-space: pre;
|
|
|
|
}
|
2017-07-28 08:19:06 +02:00
|
|
|
}
|
2019-04-16 10:58:59 +02:00
|
|
|
|
2020-12-21 03:13:31 +01:00
|
|
|
.clearfix::after {
|
2017-07-28 08:19:06 +02:00
|
|
|
content: "";
|
2018-12-03 00:54:51 +01:00
|
|
|
display: table;
|
2017-07-28 08:19:06 +02:00
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fname {
|
|
|
|
vertical-align: middle;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
2020-02-11 23:33:55 +01:00
|
|
|
max-width: 90%;
|
2017-07-28 08:19:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2020-01-26 09:26:03 +01:00
|
|
|
margin: 0;
|
2017-07-28 08:19:06 +02:00
|
|
|
}
|
|
|
|
|
2021-01-22 11:37:11 +01:00
|
|
|
#topbuts {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
2021-01-21 21:20:57 +01:00
|
|
|
position: sticky;
|
2017-07-28 08:19:06 +02:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2021-01-21 21:20:57 +01:00
|
|
|
padding: 2px;
|
2017-07-28 08:19:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.topbut {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2018-12-03 00:54:51 +01:00
|
|
|
margin-top: 4px;
|
2017-07-28 08:19:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.rainbow {
|
2020-08-27 08:37:58 +02:00
|
|
|
background-image: -webkit-gradient(
|
|
|
|
linear,
|
|
|
|
left top,
|
|
|
|
left bottom,
|
|
|
|
color-stop(0, #f77),
|
|
|
|
color-stop(50%, #7f7),
|
|
|
|
color-stop(100%, #77f)
|
|
|
|
);
|
2017-07-28 08:19:06 +02:00
|
|
|
}
|
|
|
|
|
2020-01-23 06:08:10 +01:00
|
|
|
button.linkb {
|
2017-07-28 08:19:06 +02:00
|
|
|
-webkit-appearance: none;
|
|
|
|
border: 0;
|
2020-01-23 06:08:10 +01:00
|
|
|
box-shadow: none;
|
2017-07-28 08:19:06 +02:00
|
|
|
padding: 0px 2px;
|
|
|
|
background: transparent;
|
2021-01-09 23:55:39 +01:00
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
opacity: 0.3;
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nightMode & > img {
|
|
|
|
filter: invert(180);
|
|
|
|
}
|
2017-07-28 08:19:06 +02:00
|
|
|
}
|
|
|
|
|
2021-01-09 23:55:39 +01:00
|
|
|
button:focus {
|
|
|
|
outline: none;
|
2017-07-28 08:19:06 +02:00
|
|
|
}
|
|
|
|
|
2020-04-14 19:04:03 +02:00
|
|
|
button.highlighted {
|
2021-01-09 23:55:39 +01:00
|
|
|
.nightMode #topbutsleft & {
|
|
|
|
background: linear-gradient(0deg, #333333 0%, #434343 100%);
|
|
|
|
}
|
|
|
|
|
2021-01-09 23:16:01 +01:00
|
|
|
#topbutsleft & {
|
2021-01-09 23:55:39 +01:00
|
|
|
background-color: lightgrey;
|
2021-01-09 23:16:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#topbutsright & {
|
|
|
|
border-bottom: 3px solid #000;
|
|
|
|
}
|
2017-07-28 08:19:06 +02:00
|
|
|
}
|
|
|
|
|
2020-01-23 06:08:10 +01:00
|
|
|
.dupe {
|
2020-08-27 07:57:24 +02:00
|
|
|
background: var(--flag1-bg);
|
2020-01-23 06:08:10 +01:00
|
|
|
}
|
|
|
|
|
2020-08-27 08:37:58 +02:00
|
|
|
#dupes a {
|
|
|
|
color: var(--link);
|
|
|
|
}
|
2020-01-23 06:08:10 +01:00
|
|
|
|
2020-08-27 08:37:58 +02:00
|
|
|
.drawing {
|
|
|
|
zoom: 50%;
|
|
|
|
}
|
2020-02-09 00:20:08 +01:00
|
|
|
.nightMode img.drawing {
|
2020-08-27 08:37:58 +02:00
|
|
|
filter: unquote("invert() hue-rotate(180deg)");
|
2020-02-09 00:20:08 +01:00
|
|
|
}
|