2023-04-18 20:08:59 +00:00
|
|
|
:root {
|
2023-05-08 02:27:14 +00:00
|
|
|
--negative-color: #f00;
|
|
|
|
--positive-color: #0f0;
|
|
|
|
--lightbg-text-color: black;
|
2023-05-08 00:50:14 +00:00
|
|
|
--main-bg-color: #404040;
|
|
|
|
--main-text-color: white;
|
|
|
|
--main-card-bg-color: #202020;
|
2023-05-10 21:32:41 +00:00
|
|
|
--main-card-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.84), 0 2px 10px 0 rgba(0,0,0,0.88);
|
|
|
|
/*--main-card-shadow-color: black;*/
|
2023-05-08 00:50:14 +00:00
|
|
|
--main-table-header-bg-color: black;
|
|
|
|
--main-input-bg-color: #404040;
|
2023-04-18 20:08:59 +00:00
|
|
|
}
|
|
|
|
|
2023-05-10 21:32:41 +00:00
|
|
|
@media screen and (prefers-color-scheme: light) {
|
|
|
|
:root {
|
|
|
|
--main-bg-color: white;
|
|
|
|
--main-text-color: black;
|
|
|
|
--main-card-bg-color: white;
|
|
|
|
--main-card-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
|
|
|
|
/*--main-card-shadow-color: rgba(0,0,0,0.25);*/
|
|
|
|
--main-table-header-bg-color: #808080;
|
|
|
|
--main-input-bg-color: white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-25 21:25:03 +00:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2023-04-21 22:58:15 +00:00
|
|
|
h1, h2, h3, h3, h4, h5, h6, p, a, label, button, input, select, td {
|
2023-04-11 21:38:51 +00:00
|
|
|
font-family: monospace;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
min-height: 100vh;
|
2023-05-05 05:01:05 +00:00
|
|
|
max-width: 100vw;
|
2023-05-03 21:25:55 +00:00
|
|
|
display: grid;
|
|
|
|
grid-template-rows: auto 1fr;
|
2023-04-11 21:38:51 +00:00
|
|
|
}
|
|
|
|
|
2023-05-07 04:35:44 +00:00
|
|
|
main, dialog {
|
2023-05-05 05:01:05 +00:00
|
|
|
max-width: 100vw;
|
2023-05-08 00:50:14 +00:00
|
|
|
background-color: var(--main-bg-color);
|
|
|
|
color: var(--main-text-color);
|
2023-05-08 00:02:47 +00:00
|
|
|
}
|
|
|
|
|
2023-05-07 04:15:22 +00:00
|
|
|
.w3-card {
|
2023-05-08 00:50:14 +00:00
|
|
|
background-color: var(--main-card-bg-color);
|
2023-05-10 21:32:41 +00:00
|
|
|
box-shadow: var(--main-card-box-shadow);
|
2023-05-07 04:15:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
th {
|
2023-05-08 00:50:14 +00:00
|
|
|
background-color: var(--main-table-header-bg-color);
|
2023-05-07 04:15:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
2023-05-08 00:50:14 +00:00
|
|
|
background-color: var(--main-card-bg-color);
|
2023-05-07 04:15:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input, select, textarea {
|
2023-05-08 00:50:14 +00:00
|
|
|
background-color: var(--main-input-bg-color);
|
|
|
|
color: var(--main-text-color);
|
2023-05-05 05:01:05 +00:00
|
|
|
}
|
|
|
|
|
2023-04-11 21:38:51 +00:00
|
|
|
img.clickable {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
height: 1em;
|
|
|
|
width: 1em;
|
|
|
|
}
|
|
|
|
|
2023-04-21 22:58:15 +00:00
|
|
|
.flex {
|
2023-04-11 21:38:51 +00:00
|
|
|
display: flex;
|
2023-04-21 22:58:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.row {
|
2023-04-11 21:38:51 +00:00
|
|
|
flex-direction: row;
|
|
|
|
column-gap: 10px;
|
|
|
|
align-items: center;
|
2023-04-21 22:58:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.wrap {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
row-gap: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nowrap {
|
|
|
|
flex-wrap: nowrap;
|
2023-04-12 22:23:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.hidden {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.none {
|
|
|
|
display: none;
|
2023-03-25 23:38:15 +00:00
|
|
|
}
|