2017-02-19 06:52:53 +00:00
|
|
|
* {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2017-05-08 00:44:46 +00:00
|
|
|
|
|
|
|
html {
|
2017-08-12 22:50:51 +00:00
|
|
|
background-color: #1e1e1e;
|
2017-05-08 00:44:46 +00:00
|
|
|
}
|
2017-08-11 05:24:18 +00:00
|
|
|
|
2017-08-19 17:53:59 +00:00
|
|
|
html, body, canvas {
|
|
|
|
overflow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
canvas {
|
|
|
|
position: fixed !important;
|
|
|
|
left: 0 !important;
|
|
|
|
right: 0 !important;
|
|
|
|
bottom: 0 !important;
|
|
|
|
top: 0 !important;
|
|
|
|
}
|
|
|
|
|
2017-08-13 02:41:13 +00:00
|
|
|
html, button {
|
|
|
|
font-family: "Arial", sans-serif;
|
|
|
|
font-size: 10pt;
|
|
|
|
}
|
|
|
|
|
2017-08-12 22:50:51 +00:00
|
|
|
button {
|
2017-08-13 04:24:56 +00:00
|
|
|
background-color: rgba(46, 46, 46, 0.2);
|
2017-08-12 22:50:51 +00:00
|
|
|
border-color: #4a4a4a;
|
|
|
|
color: #fafafa;
|
2017-08-13 04:24:56 +00:00
|
|
|
padding: 3px;
|
2017-08-12 22:50:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
td, th {
|
|
|
|
padding: 2px 5px;
|
2017-08-13 04:24:56 +00:00
|
|
|
font-size: 10pt;
|
2017-08-12 22:50:51 +00:00
|
|
|
}
|
|
|
|
|
2017-08-13 02:41:13 +00:00
|
|
|
form input, form button {
|
2017-08-13 03:15:24 +00:00
|
|
|
margin-bottom: 5px;
|
2017-08-13 04:56:47 +00:00
|
|
|
margin-top: 5px;
|
2017-08-13 03:15:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
form label, form label strong {
|
2017-08-13 04:24:56 +00:00
|
|
|
overflow: auto;
|
|
|
|
display: inline-block;
|
2017-08-13 03:15:24 +00:00
|
|
|
margin-right: 10px;
|
2017-08-13 02:41:13 +00:00
|
|
|
}
|
|
|
|
|
2017-08-13 04:24:56 +00:00
|
|
|
form label strong {
|
|
|
|
display: inline-block;
|
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
|
2017-08-12 22:50:51 +00:00
|
|
|
input {
|
|
|
|
color: white;
|
2017-08-13 04:56:47 +00:00
|
|
|
background-color: rgba(46, 46, 46, 0.2);
|
|
|
|
border-color: #222222;
|
2017-08-12 22:50:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input[type=number] {
|
|
|
|
padding: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.panel {
|
|
|
|
background-color: rgba(0, 0, 0, 0.6);
|
|
|
|
border: 2px solid #1e1e1e;
|
2017-08-11 05:24:18 +00:00
|
|
|
color: white;
|
|
|
|
position: absolute;
|
2017-08-12 22:50:51 +00:00
|
|
|
top: 26px;
|
2017-08-11 05:24:18 +00:00
|
|
|
left: 0;
|
2017-08-12 22:50:51 +00:00
|
|
|
z-index: 11;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
2017-08-13 06:46:51 +00:00
|
|
|
.panel h2 {
|
2017-08-12 22:50:51 +00:00
|
|
|
text-align: center;
|
2017-08-11 05:24:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#help table {
|
|
|
|
color: white;
|
|
|
|
}
|
2017-08-12 22:50:51 +00:00
|
|
|
|
|
|
|
#options {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
2017-08-13 04:56:47 +00:00
|
|
|
|
|
|
|
#close-controls, #close-help {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
padding: 3px 6px;
|
2017-08-13 06:46:51 +00:00
|
|
|
font-family: monospace;
|
2017-08-13 04:56:47 +00:00
|
|
|
}
|
2017-08-13 06:46:51 +00:00
|
|
|
|
|
|
|
#controls p.warning {
|
|
|
|
color: darksalmon;
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|