grid-apps-cmms/web/kiri/index.css

1120 lines
20 KiB
CSS
Raw Normal View History

:root {
--fg-gray: #495057;
--bg-gray: rgba(0,0,0,0.25);
2020-06-07 10:43:07 -04:00
--gradbar: linear-gradient(to right, #ddd, #666, #ddd);
--holdbar: linear-gradient(to top, rgba(100,100,100,0.1), rgba(255,255,255,1), rgba(100,100,100,0.1));
--holdbar-sf: linear-gradient(to top, rgba(200,200,200,0.1), rgba(255,255,255,1), rgba(200,200,200,0.1)) !important;
}
2020-06-07 10:43:07 -04:00
a, a:hover, a:visited {
border: none;
color: inherit;
text-decoration: none;
}
#app {
2020-06-05 23:21:53 -04:00
position: fixed;
overflow: hidden;
2020-06-05 23:21:53 -04:00
font-weight: normal;
font-family: sans-serif;
font-size: larger;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
#app,div {
2020-06-05 23:21:53 -04:00
display: flex;
padding: 0px;
border: 0px;
2020-06-05 23:21:53 -04:00
margin: 0px;
}
2020-06-05 23:21:53 -04:00
div {
position: relative;
}
button {
display: flex;
border: 1px solid #ccc;
border-radius: 3px;
background-color: #eee;
padding: 2px 7px 3px 7px;
2020-06-05 23:21:53 -04:00
margin: 1px;
margin-bottom: 2px;
}
button:hover {
background-color: #aaa;
color: black;
}
button[load] {
width: 100%;
text-align: left;
}
button[del] {
margin-left: 5px;
}
2020-06-05 23:21:53 -04:00
input {
background-color: #eee;
margin-bottom: 1px;
text-align: right;
border: 1px solid #bbb;
2020-06-07 11:41:03 -04:00
padding-top: 0;
padding-bottom: 0;
margin-top: 1px;
margin-bottom: 1px;
2020-06-05 23:21:53 -04:00
}
input:focus {
background-color: #fec;
}
input[disabled] {
2020-06-07 11:41:03 -04:00
background-color: #ddd;
2020-06-05 23:21:53 -04:00
color: #000;
border-width: 1px;
}
input[type="range"] {
width: 85px;
background-color: transparent;
}
input[type=range]::-moz-focus-outer {
border: 0;
}
2020-06-06 23:21:42 -04:00
select, textarea, button, input, a {
outline: none;
}
2020-06-05 23:21:53 -04:00
select {
border: 1px solid #bbb;
background-color: rgba(255,255,255,0.5);
2020-06-05 23:21:53 -04:00
border-radius: 3px;
}
2020-06-06 23:21:42 -04:00
select option[local="1"] {
color: #55d;
}
select option[favorite="1"] {
font-weight: bold;
}
th, tr, td, span, div, label, button {
user-select: none;
}
th, tr, td, label {
2020-06-06 11:17:04 -04:00
white-space: nowrap;
}
.noselect {
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
2020-06-05 23:21:53 -04:00
2020-06-09 18:12:59 -04:00
.hide {
display: none !important;
}
.noshow {
display: none;
}
.f-row {
flex-direction: row;
}
.f-col {
2020-06-05 23:21:53 -04:00
flex-direction: column;
}
2020-06-05 23:21:53 -04:00
.auto {
flex-basis: auto;
}
.basis-50 {
flex-basis: 50%;
}
2020-06-05 23:21:53 -04:00
.grow {
flex-grow: 1;
}
2020-06-05 23:21:53 -04:00
.a-start {
align-items: flex-start;
}
2020-06-05 23:21:53 -04:00
.a-center {
align-items: center;
}
2020-06-05 23:21:53 -04:00
.a-end {
align-items: flex-end;
}
.a-stretch {
align-items: stretch;
}
2020-06-05 23:21:53 -04:00
.j-start {
justify-content: flex-start;
}
2020-06-05 23:21:53 -04:00
.j-center {
justify-content: center;
}
2020-06-05 23:21:53 -04:00
.j-end {
justify-content: flex-end;
}
2020-06-05 23:21:53 -04:00
.space-between {
justify-content: space-between;
}
2020-06-07 11:41:03 -04:00
.center {
text-align: center;
}
.russo {
font-family: 'Russo One', sans-serif;
}
.overy {
overflow-y: auto;
}
.mh0 {
min-height: 0;
}
.mh85 {
max-height: 85%;
}
2020-06-05 23:21:53 -04:00
:-moz-any() {
overflow-x: hidden !important;
overflow-y: hidden !important;
}
2020-06-05 23:21:53 -04:00
:-moz-any() {
overflow-x: scroll !important;
overflow-y: scroll !important;
margin-right: -14px !important;
margin-bottom: -14px !important;
}
2020-06-05 23:21:53 -04:00
#curtain {
top: 0;
left: 0;
right: 0;
bottom: 0;
position: fixed;
background-color: #fff;
font-family: 'Russo One', sans-serif;
z-index: 11;
}
2020-06-07 23:02:05 -04:00
#tracker {
top: 0;
left: 0;
right: 0;
bottom: 0;
position: absolute;
display: none;
z-index: 101;
}
2020-06-05 23:21:53 -04:00
#container {
position: fixed;
z-index: -1;
2020-06-05 23:21:53 -04:00
width: 100%;
height: 100%;
}
2020-06-05 23:21:53 -04:00
#container canvas {
width: 100%;
height: 100%;
overflow: hidden;
}
2020-06-05 23:21:53 -04:00
#top {
font-family: 'Russo One', sans-serif;
background-color: rgba(255,255,255,0.75);
2020-06-05 23:21:53 -04:00
padding: 3px;
2020-06-08 01:13:50 -04:00
z-index: 15;
}
2020-06-05 23:21:53 -04:00
#top > div {
margin: 0 5px 0 5px;
}
2020-06-05 23:21:53 -04:00
#app-mode, #app-acct {
2020-06-05 23:21:53 -04:00
width: 125px;
}
2020-06-08 11:54:57 -04:00
#app-mode:hover #mode-info {
display: flex;
}
#mode-info {
display: none;
position: absolute;
white-space: nowrap;
font-size: smaller;
font-family: sans-serif;
margin-top: 5px;
padding: 5px;
left: -6px;
top: 100%;
color: var(--fg-gray);
border-radius: 3px;
border: 1px solid #ddd;
background-color: white;
}
#mode-info > div {
padding: 2px 0 2px 0;
}
#mode-info label {
font-weight: bold;
padding-right: 5px;
}
#app-name:hover #app-info {
display: flex;
}
#app-info {
display: none;
position: absolute;
white-space: nowrap;
font-size: smaller;
font-family: sans-serif;
margin-top: 5px;
padding: 5px;
top: 100%;
color: var(--fg-gray);
border-radius: 3px;
border: 1px solid #ddd;
background-color: white;
}
2020-06-05 23:21:53 -04:00
#app-acct {
align-items: center;
2020-06-05 23:21:53 -04:00
justify-content: flex-end;
}
#app-acct:hover #acct-pop {
display: flex;
}
#acct-pop {
display: none;
color: var(--fg-gray);
font-family: sans-serif;
position: absolute;
2020-06-08 01:13:50 -04:00
right: -6px;
top: 100%;
}
#acct-pop > div {
2020-06-08 01:13:50 -04:00
margin-top: 5px;
2020-06-08 14:21:10 -04:00
align-items: stretch;
background-color: white;
border: 1px solid #ddd;
border-radius: 3px;
2020-06-08 14:21:10 -04:00
padding: 0;
}
#acct-pop > div > div {
2020-06-08 14:21:10 -04:00
padding: 5px;
}
2020-06-08 14:21:10 -04:00
#acct-pop > div > div:hover {
color: #000;
background-color: #f4f4f4;
}
2020-11-13 21:36:59 -05:00
#acct-lang:hover #lang-pop, #acct-ver:hover #ver-pop {
display: flex;
}
2020-11-13 21:36:59 -05:00
#lang-pop, #ver-pop {
display: none;
position: absolute;
right: 100%;
2020-06-08 14:21:10 -04:00
top: -1px;
align-items: stretch;
text-align: right;
border-radius: 3px;
border: 1px solid #ddd;
background-color: white;
2020-11-13 21:36:59 -05:00
white-space: nowrap;
}
#ver-pop {
transform: translateY(-25%);
}
2020-11-13 21:36:59 -05:00
#lang-pop > div, #ver-pop > div {
2020-06-08 14:21:10 -04:00
padding: 5px 7px 5px 7px;
}
2020-11-13 21:36:59 -05:00
#lang-pop > div:hover, #ver-pop > div:hover {
color: #000;
background-color: #f4f4f4;
}
2020-11-13 21:36:59 -05:00
#ver-pop > div {
border-radius: 3px;
border: 1px solid white;
margin: 2px;
}
#ver-pop .cver {
background-color: #dfd !important;
border: 1px solid #aaa;
}
2020-06-05 23:21:53 -04:00
#mid {
pointer-events: none;
}
2020-06-05 23:21:53 -04:00
#mid-lcol, #mid-rcol, #modal {
pointer-events: visible;
}
2020-06-05 23:21:53 -04:00
2020-06-08 12:01:56 -04:00
#top-sep {
display: none;
}
#top-sep, #mid-sep {
z-index: 14;
2020-06-05 23:21:53 -04:00
height: 1px;
2020-06-07 10:43:07 -04:00
background-image: var(--gradbar);
}
2020-06-05 23:21:53 -04:00
2020-06-06 00:38:46 -04:00
#lt-top {
height: 10px;
border-top-right-radius: 10px;
background-color: var(--bg-gray);
left: -5px;
}
2020-06-08 14:21:10 -04:00
#lt-back {
position: absolute;
display: none;
top: 0;
}
#act-sep, #lt-sep {
background-color: var(--bg-gray);
height: 10px;
2020-06-06 00:38:46 -04:00
left: -5px;
}
#lt-end {
height: 10px;
border-bottom-right-radius: 10px;
background-color: var(--bg-gray);
2020-06-06 00:38:46 -04:00
left: -5px;
}
2020-06-05 23:21:53 -04:00
.pop-lcol {
position: absolute;
display: none;
top: -3px;
bottom: -3px;
2020-06-05 23:21:53 -04:00
left: 100%;
z-index: 10;
}
2020-06-05 23:21:53 -04:00
.pop-lcol > div {
flex-direction: column;
justify-content: center;
align-items: center;
2020-06-05 23:21:53 -04:00
margin: 2px;
padding: 5px;
background-color: rgba(255,255,255,0.75);
border: 1px solid rgba(0,0,0,0);
border-radius: 3px;
width: 60px;
color: var(--fg-gray);
}
2020-06-05 23:21:53 -04:00
.pop-lcol > div:hover {
background-color: #eee;
border: 1px solid #aaa;
color: #000;
}
2020-06-07 23:02:05 -04:00
.pop-sel {
background-color: #ddd !important;
}
2020-06-05 23:21:53 -04:00
.lt-menu {
flex-direction: column;
align-items: center;
margin: 2px 0 2px 0;
padding: 5px 5px 5px 10px;
border: 1px solid rgba(0,0,0,0);
border-radius: 3px;
color: #ccc;
2020-06-05 23:21:53 -04:00
left: -5px;
background-color: rgba(255,255,255,0.75);
}
2020-06-05 23:21:53 -04:00
.lt-menu svg {
font-size: 40px;
text-align: center;
}
2020-06-05 23:21:53 -04:00
.lt-menu label {
font-size: smaller;
}
.lt-enabled {
color: var(--fg-gray);
}
.lt-enabled:hover {
2020-06-05 23:21:53 -04:00
background-color: #eee;
border: 1px solid #aaa;
color: #000;
}
.lt-enabled:hover .pop-lcol {
2020-06-05 23:21:53 -04:00
display: flex;
}
@media only screen and (max-height : 800px) {
.lt-menu, .pop-lcol {
font-size: 16px !important;
}
.lt-menu svg {
font-size: 30px !important;
}
.pop-lcol svg {
font-size: 20px !important;
}
#mod-x {
position: absolute;
font-size: 30px;
top: 8px;
}
}
2020-06-05 23:21:53 -04:00
2020-06-07 10:43:07 -04:00
.ext-buttons button {
justify-content: center;
align-items: center;
text-align: center;
flex-grow: 1;
margin-top: 3px;
}
.txt-sel {
background-color: #eee;
}
2020-06-20 22:07:35 -04:00
.txt-sel button, .btn-sel {
2020-06-07 10:43:07 -04:00
background-color: #ccc;
}
#pop-rotate .value, #pop-scale .value {
width: 90%;
}
2020-06-15 09:47:12 -04:00
#pop-rotate label {
padding: 3px;
}
#pop-rotate svg {
padding: 3px;
font-size: 20px;
border-radius: 3px;
border: 1px solid rgba(0,0,0,0);
}
#pop-rotate svg:hover {
color: #345;
font-size: 20px;
background-color: rgba(255,255,255,0.5);
border: 1px solid #aaa;
}
#lock_x, #lock_y, #lock_z {
position: absolute;
left: 2px;
top: 7px;
}
2020-06-07 10:43:07 -04:00
#end {
left: 0;
right: 0;
bottom: 0;
position: fixed;
2020-06-05 23:21:53 -04:00
text-align: center;
font-size: smaller;
height: 25px;
}
2020-06-05 23:21:53 -04:00
#progress {
display: none;
position: absolute;
2020-06-05 23:21:53 -04:00
top: 0px;
left: 10%;
right: 10%;
text-align: center;
background-color: rgba(0,0,0,0.15);
border-radius: 3px;
}
2020-06-05 23:21:53 -04:00
#progbar {
width: 100%;
2020-06-05 23:21:53 -04:00
text-align: left;
position: relative;
background-color: rgba(255,0,0,0.65);
border-radius: 3px;
}
2020-06-05 23:21:53 -04:00
#progtxt {
color: white;
margin: 0 5px 0 5px;
padding: 0 5px 2px 5px;
2020-06-05 23:21:53 -04:00
white-space: nowrap;
flex-direction: row;
align-items: center;
vertical-align: middle;
}
2020-06-05 23:21:53 -04:00
#modal {
display: none;
position: fixed;
z-index: 20;
2020-06-06 11:17:04 -04:00
top: 50%;
left: 0px;
2020-06-05 23:21:53 -04:00
right: 0px;
bottom: 0px;
2020-06-06 11:17:04 -04:00
height: 300px;
transform: translateY(-50%);
background-color: var(--bg-gray);
2020-06-06 11:17:04 -04:00
border-bottom: 1px solid black;
border-top: 1px solid black;
overflow: hidden;
}
#modal > div {
position: absolute;
transform: translateX(50%) translateY(-50%);
right: 50%;
top: 50%;
}
.mdialog {
display: none;
padding: 10px;
min-height: 20px;
2020-06-06 11:17:04 -04:00
font-size: smaller;
background-color: rgba(255,255,255,0.75);
}
.mod-top {
2020-06-06 11:17:04 -04:00
height: 10px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
background-color: var(--bg-gray);
2020-06-06 11:17:04 -04:00
}
#mod-x {
position: absolute;
z-index: 30;
2020-06-06 11:17:04 -04:00
bottom: -20px;
right: 5px;
}
#mod-print {
background-color: rgba(255,255,255,0.85);
}
#mod-print .grow button {
margin-left: 5px;
}
#mod-print .hint {
color: #345;
font-size: 12px;
font-style: italic;
text-align: center;
font-weight: normal;
padding-top: 5px;
}
#mod-print .box {
background-color: rgba(255,255,255,0.5);
border: 1px solid #bbb;
border-radius: 3px;
padding: 20px 10px 10px 10px;
}
#mod-print .box select {
min-width: 10em;
}
#mod-print .header {
flex-direction: column;
justify-content: center;
align-items: center;
transform: translateY(50%);
z-index: 10;
}
#mod-print .header label {
background-color: white;
padding: 0 10px 0 10px;
border-radius: 5px;
border-right: 1px solid #bbb;
border-left: 1px solid #bbb;
}
#mod-print a {
text-decoration: underline;
}
#mod-print a:hover {
color: #567;
background-color: #ddd;
}
#mod-print label {
flex-grow: 1;
font-weight: bold;
padding-right: 10px;
}
#mod-print button {
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 2em;
}
#print-canvas {
width: 180px;
height: 320px;
border: 1px solid #ccc;
background-color: #f5f5f5;
transform: scale(-1, 1);
}
#print-layer {
font-family: 'Russo One', sans-serif;
font-size: small;
width: 5em;
padding: 0 !important;
text-align: right;
}
#print-download {
min-height: 4em !important;
}
.mod-end {
2020-06-06 11:17:04 -04:00
height: 10px;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
background-color: var(--bg-gray);
}
#settingsList button.selected {
font-weight: bold;
background-color: #ccc;
}
#settingsList button.selected:hover {
background-color: #aaa;
}
2020-06-07 10:43:07 -04:00
#help p {
margin: 2px;
}
#help a {
font-weight: bold;
text-decoration: underline;
}
#help .header {
2020-06-08 11:19:45 -04:00
background-color: rgba(0,0,0,0.1);
justify-content: center;
2020-06-07 10:43:07 -04:00
white-space: nowrap;
text-align: center;
border-radius: 5px;
margin-bottom: 5px;
2020-06-08 11:19:45 -04:00
padding: 1px 0 2px 0;
2020-06-07 10:43:07 -04:00
font-family: monospace;
}
#help .title {
text-align: center;
font-size: larger;
font-weight: bold;
2020-11-16 21:17:47 -05:00
padding: 10px 0 5px 50px;
}
#help .title label {
display: inline-flex;
}
#help #kiri-version {
position: absolute;
right: 10px;
bottom: 5px;
font-family: monospace;
font-weight: normal;
font-size: smaller;
color: #333;
2020-06-07 10:43:07 -04:00
}
#help .content {
flex-direction: column;
margin: 3px 0 8px 0;
2020-11-16 21:17:47 -05:00
line-height: 1.5em;
}
#help .content p {
text-align: justify;
}
#help .content li {
line-height: 1.75em;
2020-06-07 10:43:07 -04:00
}
#help .footer {
font-family: monospace;
align-items: center;
white-space: nowrap;
flex-direction: column;
padding: 8px 0 3px 0;
2020-06-07 23:31:30 -04:00
border-top: 1px dashed #aaa;
2020-06-07 10:43:07 -04:00
}
#help th, #help td {
font-family: monospace;
}
2020-06-07 23:31:30 -04:00
#help td label {
font-weight: bold;
}
2020-11-16 21:17:47 -05:00
#help button {
display: inline-flex;
2020-06-07 23:31:30 -04:00
}
2020-11-16 15:04:58 -05:00
.help-label {
2020-11-16 21:17:47 -05:00
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
2020-11-16 15:04:58 -05:00
border: 1px solid rgba(0,0,0,0);
border-right: 0;
2020-11-16 21:17:47 -05:00
padding: 12px 10px 12px 8px;
z-index: 1000;
2020-11-16 15:04:58 -05:00
}
.help-label.sel {
2020-11-16 21:17:47 -05:00
background-color: white;
2020-11-16 15:04:58 -05:00
border: 1px solid #888;
border-right: 0;
}
2020-11-16 21:17:47 -05:00
#help-tabs {
width: 550px;
height: 450px;
transform: translateX(-1px);
}
2020-11-16 15:04:58 -05:00
.help-tab {
2020-11-16 21:17:47 -05:00
flex-grow: 1;
2020-11-16 15:04:58 -05:00
display: none;
2020-11-16 21:17:47 -05:00
overflow-y: auto;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
2020-11-16 15:04:58 -05:00
border: 1px solid #888;
2020-11-16 21:17:47 -05:00
padding: 10px;
background-color: white;
white-space: normal;
2020-11-16 15:04:58 -05:00
}
.confirm {
padding-top: 15px;
}
.confirm > div {
padding-top: 10px;
}
.confirm label {
text-align: center;
line-height: 1.5em;
padding: 0 10px 0 10px;
}
.confirm button {
margin-left: 4px;
}
.confirm input {
padding: 3px;
margin: 0 10px 0 10px;
text-align: left;
}
2020-06-07 10:43:07 -04:00
.dev-type {
font-family: 'Russo One', sans-serif;
flex-direction: column;
align-items: center;
2020-06-08 11:19:45 -04:00
background-color: rgba(255,255,255,0.75);
border-radius: 5px;
width: 100px;
margin: 5px;
}
.dev-sel {
color: #033;
background-color: #bbb;
}
2020-06-05 23:21:53 -04:00
2020-06-06 23:21:42 -04:00
.t-head {
text-align: center;
font-weight: bold;
padding-bottom: 5px;
}
.t-33 {
width: 33%;
}
.t-group {
2020-06-07 10:43:07 -04:00
background-image: var(--gradbar);
2020-06-06 23:21:42 -04:00
white-space: nowrap;
text-align: center;
2020-06-07 10:43:07 -04:00
justify-content: center;
2020-06-06 23:21:42 -04:00
border-radius: 2px;
padding: 1px 0 2px 0;
margin: 5px 0 5px 0;
color: white;
}
.t-body {
background-color: rgba(255,255,255,0.5);
2020-06-06 23:21:42 -04:00
border: 1px solid #bbb;
border-radius: 3px;
}
.t-inset {
padding: 3px;
}
.t-pad {
width: 5px;
}
.t-pad2 {
width: 10px;
}
2020-06-06 23:21:42 -04:00
#devices {
2020-06-07 11:41:03 -04:00
width: 200px;
2020-06-06 23:21:42 -04:00
}
#device {
2020-06-07 11:41:03 -04:00
width: 200px;
2020-06-06 23:21:42 -04:00
}
#gcode-edit {
2020-06-07 11:41:03 -04:00
width: 200px;
}
#dev-gcode textarea {
font-family: monospace;
width: 100%;
2020-06-06 23:21:42 -04:00
}
2020-09-24 08:52:59 -04:00
#device-exp {
position: absolute;
left: 0;
z-index: 10;
}
2020-06-06 23:21:42 -04:00
#device-action, #tool-action {
margin-top: 5px;
}
#device-action button, #tool-action button {
flex-direction: column;
justify-content: center;
}
2020-06-07 11:41:03 -04:00
#catalogList {
min-width: 150px;
height: 350px;
overflow-y: scroll;
}
2020-06-09 19:23:03 -04:00
#catalogList .label {
width: 12em;
2020-06-09 19:23:03 -04:00
justify-content: flex-end;
}
#catalogList .rename {
font-style: italic;
color: #335;
}
2020-06-06 23:21:42 -04:00
#layer-slider {
2020-06-05 23:21:53 -04:00
position: absolute;
2020-06-07 23:02:05 -04:00
font-size: smaller;
left: 15px;
right: 15px;
bottom: 3px;
pointer-events: all;
}
#slider {
display: none;
height: 30px;
z-index: 100;
}
#slider-hi-val, #slider-lo-val {
display: none;
position: absolute;
font-family: monospace;
transform: translateY(-50%);
background-color: rgba(255,255,255,0.5);
border: 1px solid #ddd;
border-radius: 3px;
bottom: 110%;
left: 50%;
}
2020-06-05 23:21:53 -04:00
#slider > div {
justify-content: center;
flex-direction: row;
2020-06-05 23:21:53 -04:00
align-items: center;
}
2020-06-07 23:02:05 -04:00
#slider-max {
2020-06-05 23:21:53 -04:00
background-color: #ccc;
2020-06-07 23:02:05 -04:00
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
margin-left: 3px;
2020-06-07 23:02:05 -04:00
}
#slider-center {
background-image: var(--holdbar);
}
2020-06-07 23:02:05 -04:00
#slider-zero {
z-index: 10;
margin-right: 3px;
2020-06-05 23:21:53 -04:00
background-color: #ccc;
border-top-left-radius: 10px;
2020-06-07 23:02:05 -04:00
border-bottom-left-radius: 10px;
}
2020-06-05 23:21:53 -04:00
#slider-hold {
2020-06-07 23:02:05 -04:00
background-color: rgba(0,0,0,0.15);
2020-06-05 23:21:53 -04:00
position: absolute;
bottom: 0;
2020-06-05 23:21:53 -04:00
right: 0;
2020-06-07 23:02:05 -04:00
top: 0;
}
2020-06-07 23:02:05 -04:00
#slider-hold .handle {
width: 15px;
height: 100%;
2020-06-07 23:02:05 -04:00
border-radius: 3px;
background-color: var(--bg-gray);
}
#slider-mid {
width: 20px;
2020-06-07 23:02:05 -04:00
}
2020-06-05 23:21:53 -04:00
#alert-area {
display: none;
2020-06-05 23:21:53 -04:00
justify-content: center;
align-items: center;
position: absolute;
bottom: 40px;
left: 0;
right: 0;
}
2020-06-05 23:21:53 -04:00
#alert-border {
display: flex;
justify-content: center;
align-items: center;
max-width: 50%;
2020-06-08 23:56:22 -04:00
background-color: rgba(255,255,255,0.5);
border: 3px solid var(--bg-gray);
2020-06-05 23:21:53 -04:00
border-radius: 5px;
}
2020-06-05 23:21:53 -04:00
#alert-border:hover {
2020-06-08 23:56:22 -04:00
background-color: rgba(0,0,0,0.1);
2019-01-18 16:36:14 -05:00
}
#alert-text {
display: flex;
2019-01-18 16:36:14 -05:00
text-align: left;
font-weight: bold;
2020-06-08 23:56:22 -04:00
flex-direction: column;
margin: 3px 5px 3px 5px;
color: black;
}
#alert-text p {
margin: 5px;
2020-03-06 09:33:24 -05:00
text-align: center;
}
2020-06-06 00:38:46 -04:00
#speeds {
display: none;
position: absolute;
height: 100%;
top: 0;
right: 100%;
bottom: 0;
border: 0;
margin: 0;
padding: 0;
}
#speedbar {
position: absolute;
top: 3px;
right: 0;
bottom: 3px;
border-radius: 5px;
border: 3px solid rgba(200,200,200,0.5);
background-color: #888;
}
#speedbar label {
flex-grow: 1;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: monospace;
font-size: 12px;
padding: 0 5px 0 5px;
color: #fff;
}
2020-06-06 00:38:46 -04:00
#settings {
align-items: stretch;
}
#set-top {
color: black;
padding: 1px 10px 2px 2px;
border-top-left-radius: 10px;
border-bottom-left-radius: 0;
background-color: var(--bg-gray);
2020-06-06 00:38:46 -04:00
}
#set-end {
color: black;
padding: 1px 10px 2px 2px;
border-top-left-radius: 0;
border-bottom-left-radius: 10px;
background-color: var(--bg-gray);
2020-06-06 00:38:46 -04:00
height: 10px;
}
2020-06-12 19:46:39 -04:00
.pop-sep {
2020-06-13 18:13:47 -04:00
border: 0 !important;
padding: 0 !important;
height: 1px;
2020-06-12 19:46:39 -04:00
margin-top: 2px;
background-color: #bbb;
}
.set-sep {
background-color: var(--bg-gray) !important;
height: 10px;
right: -9px;
}
2020-06-08 11:19:45 -04:00
.set-header {
background-color: rgba(0,0,0,0.1);
text-align: center;
white-space: nowrap;
justify-content: center;
border-radius: 2px;
padding: 1px 0 2px 0;
margin: 5px 0 5px 0;
}
2020-06-06 11:17:04 -04:00
.set-group {
2020-06-06 00:38:46 -04:00
align-items: center;
flex-direction: column;
background-color: rgba(255,255,255,0.75);
border: 1px solid rgba(0,0,0,0);
border-radius: 3px;
margin: 2px 0 2px 4px;
padding: 8px 10px 8px 5px;
color: var(--fg-gray);
2020-06-06 00:38:46 -04:00
right: -5px;
}
2020-06-06 11:17:04 -04:00
.set-group:hover {
2020-06-06 00:38:46 -04:00
background-color: #eee;
border: 1px solid #aaa;
color: #000;
}
2020-06-06 11:17:04 -04:00
.set-pop {
2020-06-06 00:38:46 -04:00
top: 50%;
right: 100%;
position: absolute;
white-space: nowrap;
flex-direction: column;
transform: translateY(-50%);
background-color: rgba(255,255,255,0.8);
2020-06-06 00:38:46 -04:00
border: 1px solid #aaa;
2020-06-06 11:17:04 -04:00
border-radius: 5px;
2020-06-06 00:38:46 -04:00
margin-right: 5px;
2020-06-06 11:17:04 -04:00
padding: 5px;
2020-06-06 00:38:46 -04:00
}
.marker {
position:absolute;
border-radius: 2px;
background-color: rgba(0,0,0,0.25);
bottom: 1px;
left: 1px;
width: 4px;
height: 4px;
}
2020-06-07 23:02:05 -04:00
#layers .var-row {
border-radius: 10px;
background-color: #ddd;
padding: 2px 5px 2px 5px;
margin: 0 2px 3px 2px;
2020-06-07 23:02:05 -04:00
}
2020-06-06 23:21:42 -04:00
.var-row {
white-space: nowrap;
2020-06-07 23:02:05 -04:00
align-items: center;
2020-06-06 23:21:42 -04:00
}
.var-row label {
2020-06-06 00:38:46 -04:00
padding: 2px 4px 2px 0;
flex-grow: 1;
2020-06-08 00:31:28 -04:00
font-size: smaller;
2020-06-06 00:38:46 -04:00
}
2020-06-07 11:41:03 -04:00
.var-row input {
margin-right: 0;
margin-bottom: 1px;
2020-06-08 00:31:28 -04:00
padding-bottom: 1px;
padding-top: 1px;
2020-06-07 11:41:03 -04:00
}
.var-row button {
margin-right: 0;
margin-bottom: 1px;
}
2020-06-06 23:21:42 -04:00
.table-row {
flex-direction: row;
align-items: stretch;
}
2020-11-16 21:17:47 -05:00
.nounderline a {
text-decoration: none !important;
line-height: 2em;
}
.nounderline svg {
width: 30px !important;
}
.mono {
font-family: monospace;
}
2020-06-13 20:04:39 -04:00
#gdpr {
position: absolute;
display: none;
bottom: 10px;
right: 10px;
z-index: 1000;
padding: 20px;
border-radius: 5px;
border: 1px solid black;
background-color: white;
}
#gotit {
font-weight: bold;
font-size: larger;
padding: 5px 20px 5px 20px;
margin-left: 10px;
}
2020-11-12 20:02:06 -05:00
#fps {
position: fixed;
right: 5px;
bottom: 5px;
font-size: 10px;
color: #000;
}