2017-04-18 17:09:33 -04:00
|
|
|
/** ******************************************************************
|
|
|
|
|
* Element
|
|
|
|
|
******************************************************************* */
|
|
|
|
|
|
|
|
|
|
a, a:hover, a:visited {
|
|
|
|
|
border: none;
|
|
|
|
|
outline: none;
|
|
|
|
|
color: inherit;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
body {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
body,div {
|
|
|
|
|
margin: 0px;
|
|
|
|
|
padding: 0px;
|
|
|
|
|
border: 0px;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
font-family: sans-serif;
|
|
|
|
|
}
|
|
|
|
|
label {
|
|
|
|
|
font-size: 14px;
|
2019-01-15 10:54:59 -05:00
|
|
|
border-bottom: 1px solid #ddd;
|
2017-04-18 17:09:33 -04:00
|
|
|
margin-right: 2px;
|
|
|
|
|
}
|
|
|
|
|
canvas {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
button {
|
|
|
|
|
outline: none;
|
|
|
|
|
max-width: 25ex;
|
2019-01-15 12:45:53 -05:00
|
|
|
border: 1px solid #ccc;
|
2019-01-15 10:54:59 -05:00
|
|
|
border-radius: 3px;
|
2019-01-15 12:45:53 -05:00
|
|
|
background-color: #eee;
|
|
|
|
|
padding: 2px 7px 3px 7px;
|
|
|
|
|
margin-bottom: 2px !important;
|
2017-04-18 17:09:33 -04:00
|
|
|
}
|
|
|
|
|
button:hover {
|
2019-01-15 20:54:31 -05:00
|
|
|
background-color: #aaa;
|
2019-01-18 20:41:10 -05:00
|
|
|
color: black;
|
2017-04-18 17:09:33 -04:00
|
|
|
}
|
|
|
|
|
button[load] {
|
|
|
|
|
width: 100%;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
button[del] {
|
|
|
|
|
margin-left: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** ******************************************************************
|
|
|
|
|
* Class
|
|
|
|
|
******************************************************************* */
|
|
|
|
|
|
|
|
|
|
.noselect {
|
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
-khtml-user-select: none;
|
|
|
|
|
-moz-user-select: none;
|
|
|
|
|
-ms-user-select: none;
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
.title {
|
|
|
|
|
text-align:center;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
border-bottom: 2px;
|
|
|
|
|
color: #222;
|
|
|
|
|
padding: 4px 5px 3px 5px;
|
|
|
|
|
margin-bottom: 2px;
|
|
|
|
|
background-color: rgba(170,221,255,0.75);
|
|
|
|
|
border: 1px solid rgba(255,255,255,0.5);
|
|
|
|
|
font-size: 12pt !important;
|
|
|
|
|
font-weight: bold !important;
|
|
|
|
|
}
|
|
|
|
|
.tablerow {
|
|
|
|
|
-webkit-flex-direction: row;
|
|
|
|
|
-webkit-justify-content: center;
|
|
|
|
|
-webkit-align-items: center;
|
|
|
|
|
display: -webkit-flex;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
.tablerow button {
|
|
|
|
|
-webkit-flex-basis: auto;
|
|
|
|
|
-webkit-flex-grow: 1;
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
flex-basis: auto;
|
|
|
|
|
width: 33.33%;
|
|
|
|
|
}
|
|
|
|
|
.grouphead {
|
2019-01-15 10:54:59 -05:00
|
|
|
color: black;
|
2020-02-07 21:23:22 -05:00
|
|
|
background-color: rgba(170,221,255,0.7);
|
2019-01-15 10:54:59 -05:00
|
|
|
border: 1px solid #ccc;
|
2019-01-15 12:45:53 -05:00
|
|
|
border-radius: 3px;
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
margin-bottom: 3px;
|
|
|
|
|
padding: 3px 2px 2px 3px;
|
2017-04-18 17:09:33 -04:00
|
|
|
text-align: center;
|
|
|
|
|
text-transform: uppercase;
|
2019-01-15 12:45:53 -05:00
|
|
|
font-size: 12px;
|
2019-01-15 10:54:59 -05:00
|
|
|
font-weight: bold;
|
2017-04-18 17:09:33 -04:00
|
|
|
}
|
|
|
|
|
.grouphead:hover {
|
|
|
|
|
cursor: default;
|
|
|
|
|
}
|
|
|
|
|
.ck_catalog {
|
|
|
|
|
padding-top: 2px;
|
|
|
|
|
}
|
|
|
|
|
.ck_catalog div {
|
|
|
|
|
-webkit-flex-direction: row;
|
|
|
|
|
-webkit-justify-content: center;
|
|
|
|
|
-webkit-align-items: center;
|
|
|
|
|
display: -webkit-flex;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-bottom: 1px;
|
|
|
|
|
}
|
|
|
|
|
.ck_catalog button {
|
|
|
|
|
margin: 0px 0px 1px 2px !important;
|
|
|
|
|
}
|
|
|
|
|
.buton {
|
|
|
|
|
font-weight: bold;
|
2019-01-15 20:54:31 -05:00
|
|
|
background-color: #bbb;
|
2017-04-18 17:09:33 -04:00
|
|
|
}
|
|
|
|
|
.flow-row {
|
|
|
|
|
position: relative;
|
|
|
|
|
-webkit-flex-direction: row;
|
|
|
|
|
-webkit-justify-content: flex-end;
|
|
|
|
|
display: -webkit-flex;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
}
|
|
|
|
|
.flow-row label {
|
|
|
|
|
-webkit-flex-basis: auto;
|
|
|
|
|
-webkit-flex-grow: 1;
|
|
|
|
|
flex-basis: auto;
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
}
|
|
|
|
|
.flow-col {
|
|
|
|
|
position: relative;
|
|
|
|
|
-webkit-flex-direction: column;
|
|
|
|
|
-webkit-justify-content: flex-start;
|
|
|
|
|
display: -webkit-flex;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
}
|
|
|
|
|
.flow-left {
|
|
|
|
|
-webkit-justify-content: flex-start;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
}
|
|
|
|
|
.flow-grow {
|
|
|
|
|
-webkit-flex-grow: 1;
|
|
|
|
|
flex-grow: 1
|
|
|
|
|
}
|
|
|
|
|
.flow-space-between {
|
|
|
|
|
-webkit-justify-content: space-between;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.control input {
|
2019-01-15 10:54:59 -05:00
|
|
|
background-color: #eee;
|
2017-04-18 17:09:33 -04:00
|
|
|
margin-bottom: 1px;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
.control input:focus {
|
2019-01-15 10:54:59 -05:00
|
|
|
background-color: #fec;
|
|
|
|
|
outline: none;
|
2017-04-18 17:09:33 -04:00
|
|
|
}
|
|
|
|
|
.control input[disabled] {
|
|
|
|
|
background-color: #aaa;
|
|
|
|
|
border-color: #bbb;
|
|
|
|
|
color: #000;
|
|
|
|
|
border-width: 1px;
|
|
|
|
|
}
|
|
|
|
|
.control input[type="range"] {
|
|
|
|
|
width: 85px;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
.control button {
|
|
|
|
|
margin: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-02 21:52:54 -04:00
|
|
|
.control select {
|
|
|
|
|
margin-bottom: 1px !important;
|
|
|
|
|
margin-right: 2px !important;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-18 17:09:33 -04:00
|
|
|
/** ******************************************************************
|
|
|
|
|
* ID
|
|
|
|
|
******************************************************************* */
|
|
|
|
|
|
|
|
|
|
#container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
xoverflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
#control-left {
|
|
|
|
|
position: fixed;
|
|
|
|
|
z-index: 10000;
|
2020-02-25 20:42:48 -05:00
|
|
|
color: black;
|
2019-01-15 10:54:59 -05:00
|
|
|
top: 5px;
|
2017-04-18 17:09:33 -04:00
|
|
|
left: 0px;
|
|
|
|
|
padding: 5px;
|
2019-01-15 10:54:59 -05:00
|
|
|
border-top: 3px solid #ddd;
|
|
|
|
|
border-right: 3px solid #ddd;
|
|
|
|
|
border-bottom: 3px solid #ddd;
|
|
|
|
|
border-top-right-radius: 3px;
|
|
|
|
|
border-bottom-right-radius: 3px;
|
2019-01-15 21:58:57 -05:00
|
|
|
background-color: rgba(255,255,255,0.75);
|
2017-04-18 17:09:33 -04:00
|
|
|
overflow-y: scroll;
|
|
|
|
|
}
|
|
|
|
|
#control-left::-webkit-scrollbar {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
#control-right::-webkit-scrollbar {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
#control-right {
|
|
|
|
|
position: fixed;
|
|
|
|
|
z-index: 10000;
|
2019-01-15 10:54:59 -05:00
|
|
|
top: 5px;
|
2017-04-18 17:09:33 -04:00
|
|
|
right: 0px;
|
2019-01-15 10:54:59 -05:00
|
|
|
bottom: 5px;
|
2017-04-18 17:09:33 -04:00
|
|
|
padding: 5px;
|
2019-01-15 10:54:59 -05:00
|
|
|
border-top: 3px solid #ddd;
|
|
|
|
|
border-left: 3px solid #ddd;
|
|
|
|
|
border-bottom: 3px solid #ddd;
|
|
|
|
|
border-top-left-radius: 3px;
|
|
|
|
|
border-bottom-left-radius: 3px;
|
2019-01-15 21:58:57 -05:00
|
|
|
background-color: rgba(255,255,255,0.75);
|
2019-01-15 10:54:59 -05:00
|
|
|
color: #222;
|
2017-04-18 17:09:33 -04:00
|
|
|
overflow-y: scroll;
|
|
|
|
|
overflow-x: visible;
|
|
|
|
|
}
|
|
|
|
|
#loading {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 5px;
|
|
|
|
|
left: 20%;
|
|
|
|
|
right: 20%;
|
|
|
|
|
border: 1px solid white;
|
|
|
|
|
margin: 2px;
|
|
|
|
|
background-color: #ddd;
|
|
|
|
|
text-align: center;
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
#modal {
|
|
|
|
|
display: none;
|
|
|
|
|
position: fixed;
|
|
|
|
|
z-index: 20000;
|
|
|
|
|
top: 0px;
|
|
|
|
|
left: 0px;
|
|
|
|
|
right: 0px;
|
|
|
|
|
bottom: 0px;
|
|
|
|
|
background-color: rgba(0,0,0,0);
|
|
|
|
|
}
|
|
|
|
|
#progress {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 1%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background-color: #f00;
|
|
|
|
|
}
|
|
|
|
|
#welcome {
|
|
|
|
|
color: white;
|
|
|
|
|
padding: 10px;
|
2019-01-15 10:54:59 -05:00
|
|
|
border: 10px solid white;
|
2017-04-18 17:09:33 -04:00
|
|
|
background-color: rgba(20,20,20,0.75);
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 50px;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 100px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
width: 50%;
|
|
|
|
|
max-width: 800px;
|
|
|
|
|
min-width: 500px;
|
|
|
|
|
display: block;
|
|
|
|
|
unicode-bidi: embed;
|
|
|
|
|
font-family: monospace;
|
|
|
|
|
white-space: pre;
|
|
|
|
|
overflow-y: scroll
|
|
|
|
|
}
|