2020-07-15 03:26:53 +00:00
|
|
|
:root {
|
|
|
|
--background-color: #000000;
|
|
|
|
--surface-color: #121212;
|
2020-08-12 05:38:31 +00:00
|
|
|
--primary-color: #bb86fc;
|
|
|
|
--secondary-color: #03dac6;
|
2020-07-15 03:26:53 +00:00
|
|
|
--on-surface-color: #ffffff;
|
|
|
|
--on-background-color: #f5f0f0;
|
|
|
|
--on-primary-color: #000000;
|
|
|
|
--on-secondary-color: #000000;
|
2020-08-12 05:38:31 +00:00
|
|
|
--default-color: #9b6edc;
|
|
|
|
--error-color: #cf6679;
|
2020-07-15 03:26:53 +00:00
|
|
|
--map-background-color: #5e5454;
|
|
|
|
--timeline-background-color: #1f1f1f;
|
2020-08-28 04:18:59 +00:00
|
|
|
--file-reader-background-color: #ffffff80;
|
2020-07-15 03:26:53 +00:00
|
|
|
--red: #dc6eae;
|
|
|
|
--green: #aedc6e;
|
2020-08-12 05:38:31 +00:00
|
|
|
--yellow: #eeff41;
|
2020-07-15 03:26:53 +00:00
|
|
|
--blue: #6e77dc;
|
|
|
|
--orange: #dc9b6e;
|
|
|
|
--violet: #d26edc;
|
2020-12-13 19:33:07 +00:00
|
|
|
--border-color-rgb: 128, 128, 128;
|
|
|
|
--border-color: rgba(var(--border-color-rgb), 0.2);
|
2020-07-15 03:26:53 +00:00
|
|
|
}
|
|
|
|
|
2020-07-28 09:02:26 +00:00
|
|
|
[data-theme="light"] {
|
2020-08-12 05:38:31 +00:00
|
|
|
--background-color: #ffffff;
|
|
|
|
--surface-color: #ffffff;
|
|
|
|
--primary-color: #6200ee;
|
|
|
|
--secondary-color: #03dac5;
|
2020-07-28 09:02:26 +00:00
|
|
|
--on-surface-color: #000000;
|
|
|
|
--on-background-color: #000000;
|
2020-08-12 05:38:31 +00:00
|
|
|
--on-primary-color: #ffffff;
|
2020-07-28 09:02:26 +00:00
|
|
|
--on-secondary-color: #000000;
|
2020-08-12 05:38:31 +00:00
|
|
|
--default-color: #3700b3;
|
|
|
|
--error-color: #b00020;
|
2020-07-28 09:02:26 +00:00
|
|
|
--map-background-color: #5e5454;
|
2020-08-12 05:38:31 +00:00
|
|
|
--timeline-background-color: #fdfcfc;
|
2020-08-28 04:18:59 +00:00
|
|
|
--file-reader-background-color: #887e8b80;
|
2020-08-12 05:38:31 +00:00
|
|
|
--red: #b71c1c;
|
2020-07-28 09:02:26 +00:00
|
|
|
--green: #7db300;
|
2020-08-12 05:38:31 +00:00
|
|
|
--yellow: #ffff00;
|
2020-07-28 09:02:26 +00:00
|
|
|
--blue: #0024b3;
|
2020-08-12 05:38:31 +00:00
|
|
|
--orange: #ef6c00;
|
2020-07-28 09:02:26 +00:00
|
|
|
--violet: #8f00b3;
|
|
|
|
}
|
|
|
|
|
2020-07-13 18:02:52 +00:00
|
|
|
body {
|
2020-10-23 11:21:18 +00:00
|
|
|
font-family: sans-serif;
|
2020-07-13 18:02:52 +00:00
|
|
|
font-size: 14px;
|
2020-07-15 03:26:53 +00:00
|
|
|
color: var(--on-background-color);
|
2020-10-19 16:48:36 +00:00
|
|
|
margin: 10px 10px 0 10px;
|
2020-07-15 03:26:53 +00:00
|
|
|
background-color: var(--background-color);
|
2020-07-13 18:02:52 +00:00
|
|
|
}
|
2020-10-10 18:02:26 +00:00
|
|
|
|
2020-10-19 16:48:36 +00:00
|
|
|
section {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2020-10-10 18:02:26 +00:00
|
|
|
::-webkit-scrollbar, ::-webkit-scrollbar-track, ::-webkit-scrollbar-corner {
|
|
|
|
background-color: rgba(0, 0, 0, 0.0);
|
|
|
|
}
|
|
|
|
::-webkit-scrollbar, ::-webkit-scrollbar-track {
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
}
|
2020-10-19 16:48:36 +00:00
|
|
|
::-webkit-scrollbar-thumb {
|
2020-10-10 18:02:26 +00:00
|
|
|
background-color: rgba(128, 128, 128, 0.5);
|
|
|
|
border-radius: 8px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
|
|
background-color: rgba(128, 128, 128, 0.8);
|
|
|
|
}
|
|
|
|
|
|
|
|
kbd {
|
|
|
|
color: var(--on-primary-color);
|
|
|
|
background-color: var(--primary-color);
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid var(--on-primary-color);
|
2020-07-13 18:02:52 +00:00
|
|
|
display: inline-block;
|
2020-10-10 18:02:26 +00:00
|
|
|
font-size: .9em;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 0px 4px 2px 4px;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: var(--primary-color);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
a:hover {
|
|
|
|
color: var(--secondary-color);
|
2020-07-13 18:02:52 +00:00
|
|
|
}
|
2020-10-10 18:02:26 +00:00
|
|
|
a:link {
|
|
|
|
color: var(--secondary-color);
|
|
|
|
}
|
|
|
|
|
2020-07-16 15:37:20 +00:00
|
|
|
dl {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: min-content auto;
|
2020-11-02 09:27:28 +00:00
|
|
|
grid-gap: 5px;
|
2020-07-16 15:37:20 +00:00
|
|
|
}
|
|
|
|
dt {
|
|
|
|
text-align: right;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
dd {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2020-10-10 18:02:26 +00:00
|
|
|
|
2020-07-13 18:02:52 +00:00
|
|
|
.panel {
|
2020-07-15 03:26:53 +00:00
|
|
|
background-color: var(--surface-color);
|
|
|
|
color: var(--on-surface-color);
|
2020-12-07 08:44:54 +00:00
|
|
|
padding: 10px;
|
2020-10-19 16:48:36 +00:00
|
|
|
border-radius: 10px;
|
2020-12-13 19:33:07 +00:00
|
|
|
border: 3px solid var(--border-color);
|
2020-12-07 08:44:54 +00:00
|
|
|
overflow: hidden;
|
2020-11-02 09:27:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.panelBody {
|
2020-12-13 19:33:07 +00:00
|
|
|
position: relative;
|
2020-11-02 09:27:28 +00:00
|
|
|
max-height: 800px;
|
|
|
|
overflow-y: scroll;
|
|
|
|
margin: 0 -10px -10px 0;
|
2020-10-19 16:48:36 +00:00
|
|
|
}
|
|
|
|
|
2020-12-07 08:44:54 +00:00
|
|
|
.panel > h2, .panelTitle {
|
|
|
|
margin: -10px -10px 0 -10px;
|
|
|
|
padding: 5px 10px 5px 10px;
|
2020-12-13 19:33:07 +00:00
|
|
|
background-color: var(--border-color);
|
2020-12-07 08:44:54 +00:00
|
|
|
border-radius: 7px 7px 0 0;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel > select{
|
|
|
|
width: calc(100% + 20px);
|
|
|
|
margin: 0 -10px 10px -10px;
|
2020-07-13 18:02:52 +00:00
|
|
|
}
|
2020-10-10 18:02:26 +00:00
|
|
|
|
2020-12-21 09:47:32 +00:00
|
|
|
.panel > .selection {
|
|
|
|
display: flex;
|
|
|
|
margin: 0 -10px 0 -10px;
|
|
|
|
}
|
|
|
|
.panel > .selection input {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel > .selection label {
|
|
|
|
flex: 1;
|
|
|
|
padding: 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
background-color: var( --surface-color);
|
|
|
|
font-weight: normal;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.panel > .selection label ~ label {
|
|
|
|
border-left: 2px var(--border-color) solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel > .selection label:hover {
|
|
|
|
background-color: var(--primary-color);
|
|
|
|
}
|
|
|
|
.panel > .selection [type=radio]:checked + label {
|
|
|
|
background-color: var(--border-color);
|
|
|
|
}
|
|
|
|
|
2020-08-12 15:10:23 +00:00
|
|
|
button {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
input,
|
|
|
|
select,
|
|
|
|
button {
|
|
|
|
background-color: var(--surface-color);
|
|
|
|
color: var(--on-surface-color);
|
2020-12-13 19:33:07 +00:00
|
|
|
border: 2px solid rgba(var(--border-color-rgb), 0.4);
|
2020-11-02 09:27:28 +00:00
|
|
|
border-radius: 5px;
|
|
|
|
padding: 2px;
|
2020-08-12 15:10:23 +00:00
|
|
|
}
|
2020-11-02 09:27:28 +00:00
|
|
|
input:hover,
|
|
|
|
select:hover,
|
|
|
|
button:hover {
|
2020-12-13 19:33:07 +00:00
|
|
|
border: 2px solid rgba(var(--border-color-rgb), 0.6);
|
2020-11-02 09:27:28 +00:00
|
|
|
}
|
|
|
|
|
2020-07-13 18:02:52 +00:00
|
|
|
.colorbox {
|
2020-11-30 15:09:54 +00:00
|
|
|
display: inline-block;
|
2020-07-13 18:02:52 +00:00
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
2020-07-15 03:26:53 +00:00
|
|
|
border: 1px var(--background-color) solid;
|
2020-10-19 12:39:55 +00:00
|
|
|
border-radius: 50%;
|
2020-07-13 18:02:52 +00:00
|
|
|
}
|
|
|
|
|
2020-08-12 05:38:31 +00:00
|
|
|
.primary {
|
2020-07-15 03:26:53 +00:00
|
|
|
background-color: var(--default-color);
|
2020-07-13 18:02:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.red {
|
2020-07-15 03:26:53 +00:00
|
|
|
background-color: var(--red);
|
2020-07-13 18:02:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.green {
|
2020-07-15 03:26:53 +00:00
|
|
|
background-color: var(--green);
|
2020-07-13 18:02:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.yellow {
|
2020-07-15 03:26:53 +00:00
|
|
|
background-color: var(--yellow);
|
|
|
|
color: var(--map-background-color);
|
2020-07-13 18:02:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.blue {
|
2020-07-15 03:26:53 +00:00
|
|
|
background-color: var(--blue);
|
2020-07-13 18:02:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.orange {
|
2020-08-12 05:38:31 +00:00
|
|
|
background-color: var(--orange);
|
2020-07-13 18:02:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.violet {
|
2020-07-15 03:26:53 +00:00
|
|
|
background-color: var(--violet);
|
|
|
|
color: var(--map-background-color);
|
2020-07-13 18:02:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.success {
|
2020-07-15 03:26:53 +00:00
|
|
|
background-color: var(--secondary-color);
|
2020-07-13 18:02:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.failure {
|
2020-07-15 03:26:53 +00:00
|
|
|
background-color: var(--error-color);
|
2020-07-13 18:02:52 +00:00
|
|
|
}
|
2020-08-24 06:21:26 +00:00
|
|
|
|
2020-08-28 14:41:56 +00:00
|
|
|
.highlight {
|
|
|
|
background-color: var(--primary-color);
|
|
|
|
color: var(--on-primary-color);
|
|
|
|
}
|
2020-12-21 09:47:32 +00:00
|
|
|
|
|
|
|
button:hover,
|
2020-08-24 06:21:26 +00:00
|
|
|
.clickable:hover,
|
2020-09-23 10:30:17 +00:00
|
|
|
.mark:hover,
|
|
|
|
.clickable:active,
|
|
|
|
.mark:active {
|
2020-08-24 06:21:26 +00:00
|
|
|
background-color: var(--primary-color);
|
|
|
|
color: var(--on-primary-color);
|
|
|
|
cursor: pointer;
|
2020-12-07 08:44:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-13 19:33:07 +00:00
|
|
|
.legend {
|
2020-12-07 08:44:54 +00:00
|
|
|
position: absolute;
|
2020-12-13 19:33:07 +00:00
|
|
|
right: 0px;
|
|
|
|
top: 0px;
|
2020-12-07 08:44:54 +00:00
|
|
|
background-color: var(--surface-color);
|
|
|
|
border-radius: 5px;
|
2020-12-13 19:33:07 +00:00
|
|
|
border: 3px solid var(--border-color);
|
2020-12-07 08:44:54 +00:00
|
|
|
padding: 0 10px 0 10px;
|
|
|
|
}
|
2020-12-13 19:33:07 +00:00
|
|
|
.legend dt {
|
2020-12-07 08:44:54 +00:00
|
|
|
font-family: monospace;
|
|
|
|
}
|
2020-12-13 19:33:07 +00:00
|
|
|
.legend h3 {
|
2020-12-07 08:44:54 +00:00
|
|
|
margin-top: 10px;
|
2020-12-14 09:44:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.panelCloserLabel {
|
|
|
|
float: left;
|
|
|
|
cursor: zoom-out;
|
|
|
|
margin: 0 10px 0 0;
|
|
|
|
transition: transform 0.2s ease-out;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
.panelCloserInput {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.panel .panelCloserInput:checked ~ .panelCloserLabel,
|
|
|
|
.panelCloserInput:checked ~ .panelCloserLabel {
|
|
|
|
cursor: zoom-in;
|
|
|
|
transform: rotate(-90deg);
|
|
|
|
display: inherit;
|
|
|
|
}
|
|
|
|
.panel .panelCloserInput:checked ~ h2 {
|
|
|
|
display: inherit;
|
|
|
|
border-radius: 7px;
|
|
|
|
margin-bottom: -20px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
.panelCloserInput:checked ~ * {
|
|
|
|
display: none;
|
2020-10-10 18:02:26 +00:00
|
|
|
}
|