mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-09-12 01:24:04 +00:00
Merge remote-tracking branch 'letscontrolit/mega' into esp_codemirror
This commit is contained in:
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,445 @@
|
||||
h1,h6 {
|
||||
color:#07d
|
||||
}
|
||||
.checkmark:after,.dotmark:after {
|
||||
content:'';
|
||||
display:none;
|
||||
position:absolute
|
||||
}
|
||||
.button,.menu {
|
||||
text-decoration:none
|
||||
}
|
||||
.div_l,.menu {
|
||||
float:left
|
||||
}
|
||||
.closebtn,.div_r {
|
||||
color:#fff;
|
||||
float:right
|
||||
}
|
||||
* {
|
||||
box-sizing:border-box;
|
||||
font-family: sans-serif;
|
||||
font-size: 12pt;
|
||||
margin:0
|
||||
}
|
||||
h1 {
|
||||
font-size:16pt;
|
||||
margin:8px 0
|
||||
}
|
||||
h3 {
|
||||
background-color:#cacaca;
|
||||
margin:-4px;
|
||||
padding:6px
|
||||
}
|
||||
h6 {
|
||||
font-size:10pt
|
||||
}
|
||||
code,kbd,pre,samp,tt,xmp {
|
||||
font:1em monospace,monospace
|
||||
}
|
||||
.button {
|
||||
background-color:#07d;
|
||||
border:0;
|
||||
border-radius:5px;
|
||||
color:#fff;
|
||||
margin:4px;
|
||||
padding:4px 16px
|
||||
}
|
||||
.button.help,.checkmark,input,select,textarea {
|
||||
border-color:gray;
|
||||
border-style:solid;
|
||||
border-width:1px
|
||||
}
|
||||
.button.link.wide {
|
||||
display:inline-block;
|
||||
text-align:center;
|
||||
width:100%
|
||||
}
|
||||
.button.link.red {
|
||||
background-color:red
|
||||
}
|
||||
.button.help {
|
||||
border-radius:50%;
|
||||
font-family:monospace;
|
||||
padding:2px 7px
|
||||
}
|
||||
.checkmark,input,select,textarea {
|
||||
border-radius:5px
|
||||
}
|
||||
.button:hover {
|
||||
background:#369
|
||||
}
|
||||
input,select,textarea {
|
||||
background-color:#eee;
|
||||
margin:4px;
|
||||
padding:4px 8px
|
||||
}
|
||||
input.wide,select.wide {
|
||||
margin-bottom:5px;
|
||||
max-width:350px;
|
||||
width:95%
|
||||
}
|
||||
.widenumber {
|
||||
max-width:500px;
|
||||
width:100px
|
||||
}
|
||||
.container,.container2 {
|
||||
cursor:pointer;
|
||||
font-size:12pt;
|
||||
padding-left:35px
|
||||
}
|
||||
.container {
|
||||
display:block;
|
||||
height:30px;
|
||||
margin-left:4px;
|
||||
margin-top:0;
|
||||
position:relative;
|
||||
user-select:none
|
||||
}
|
||||
.checkmark.disabled {
|
||||
background-color:grey
|
||||
}
|
||||
.checkmark {
|
||||
background-color:#eee;
|
||||
height:25px;
|
||||
left:0;
|
||||
position:absolute;
|
||||
top:0;
|
||||
width:25px
|
||||
}
|
||||
.container .checkmark:after {
|
||||
border:solid #fff;
|
||||
border-width:0 3px 3px 0;
|
||||
height:10px;
|
||||
left:7px;
|
||||
top:3px;
|
||||
transform:rotate(45deg);
|
||||
width:5px
|
||||
}
|
||||
#toastmessage,.dotmark,.logviewer {
|
||||
border-color:gray;
|
||||
border-style:solid
|
||||
}
|
||||
#toastmessage,.dotmark {
|
||||
border-width:1px
|
||||
}
|
||||
.container2 {
|
||||
margin-bottom:20px;
|
||||
margin-left:9px;
|
||||
position:relative;
|
||||
user-select:none
|
||||
}
|
||||
.dotmark {
|
||||
background-color:#eee;
|
||||
border-radius:50%;
|
||||
height:26px;
|
||||
left:0;
|
||||
position:absolute;
|
||||
top:0;
|
||||
width:26px
|
||||
}
|
||||
.container2 .dotmark:after {
|
||||
background:#fff;
|
||||
border-radius:50%;
|
||||
height:8px;
|
||||
left:8px;
|
||||
top:8px;
|
||||
width:8px
|
||||
}
|
||||
.logviewer,textarea {
|
||||
font-family:'Lucida Console',Monaco,monospace;
|
||||
height:60vh;
|
||||
width:-webkit-fill-available
|
||||
}
|
||||
#toastmessage {
|
||||
background-color:#07d;
|
||||
border-radius:5px;
|
||||
bottom:30%;
|
||||
color:#fff;
|
||||
font-size:17px;
|
||||
left:282px;
|
||||
margin-left:-125px;
|
||||
min-width:250px;
|
||||
padding:16px;
|
||||
position:fixed;
|
||||
text-align:center;
|
||||
visibility:hidden;
|
||||
z-index:1
|
||||
}
|
||||
#toastmessage.show {
|
||||
animation:fadein .5s,fadeout .5s 2.5s;
|
||||
visibility:visible
|
||||
}
|
||||
.container input,.container2 input {
|
||||
cursor:pointer;
|
||||
opacity:0;
|
||||
position:absolute
|
||||
}
|
||||
.container input:checked~.checkmark,.container2 input:checked~.dotmark {
|
||||
background-color:#07d
|
||||
}
|
||||
.container input:checked~.checkmark:after,.container2,.container2 input:checked~.dotmark:after {
|
||||
display:block
|
||||
}
|
||||
@keyframes fadein {
|
||||
from {
|
||||
bottom:20%;
|
||||
opacity:0
|
||||
}
|
||||
to {
|
||||
bottom:30%;
|
||||
opacity:.9
|
||||
}
|
||||
}
|
||||
@keyframes fadeout {
|
||||
from {
|
||||
bottom:30%;
|
||||
opacity:.9
|
||||
}
|
||||
to {
|
||||
bottom:0;
|
||||
opacity:0
|
||||
}
|
||||
}
|
||||
.level_0 {
|
||||
color:#f1f1f1
|
||||
}
|
||||
.level_1 {
|
||||
color:#fcff95
|
||||
}
|
||||
.level_2 {
|
||||
color:#9dcefe
|
||||
}
|
||||
.level_3 {
|
||||
color:#a4fc79
|
||||
}
|
||||
.level_4 {
|
||||
color:#f2ab39
|
||||
}
|
||||
.level_9 {
|
||||
color:#f50
|
||||
}
|
||||
.logviewer {
|
||||
background-color:#272727;
|
||||
color:#f1f1f1;
|
||||
overflow:auto
|
||||
}
|
||||
tbody {
|
||||
overflow:auto
|
||||
}
|
||||
table.multirow th,table.normal th {
|
||||
background-color:#444;
|
||||
color:#fff;
|
||||
padding:6px;
|
||||
width:100vw
|
||||
}
|
||||
table.multirow,table.normal {
|
||||
border-spacing:0;
|
||||
border-style:none;
|
||||
min-width:420px;
|
||||
padding-bottom:5px;
|
||||
width:100%
|
||||
}
|
||||
table.multirow tr,table.normal td,table.normal tr {
|
||||
padding:4px
|
||||
}
|
||||
table.normal td {
|
||||
height:30px
|
||||
}
|
||||
table.multirow td {
|
||||
border-color:silver;
|
||||
height:30px;
|
||||
padding:4px;
|
||||
text-align:center
|
||||
}
|
||||
table.multirow tr:nth-child(odd) {
|
||||
background-color:#e8e8e8
|
||||
}
|
||||
.highlight td {
|
||||
background-color:#dbff0075
|
||||
}
|
||||
.apheader,.headermenu {
|
||||
background-color:#f8f8f8;
|
||||
padding:8px 12px;
|
||||
width:100vw
|
||||
}
|
||||
.note {
|
||||
color:#444;
|
||||
font-style:italic
|
||||
}
|
||||
.headermenu {
|
||||
border-bottom:.1px solid #444;
|
||||
height:100px;
|
||||
position:fixed;
|
||||
top:0;
|
||||
z-index:1
|
||||
}
|
||||
.bodymenu {
|
||||
background-color:#fff;
|
||||
height:100vh;
|
||||
padding-top:100px
|
||||
}
|
||||
.menubar {
|
||||
position:inherit;
|
||||
top:54px;
|
||||
width:100%
|
||||
}
|
||||
a.menu {
|
||||
align-items:center;
|
||||
display:flex;
|
||||
height:46px;
|
||||
justify-content:center
|
||||
}
|
||||
.menu {
|
||||
border:solid transparent 1px;
|
||||
border-radius:5px 5px 0 0;
|
||||
color:#444;
|
||||
padding:10px 10px 8px;
|
||||
white-space:nowrap
|
||||
}
|
||||
.menu.active {
|
||||
background-color:#fff;
|
||||
border-color:#444 #444 #fff;
|
||||
border-width:.1px;
|
||||
color:#000
|
||||
}
|
||||
.menu:hover {
|
||||
background:#bdbdbd;
|
||||
color:#000
|
||||
}
|
||||
.menu_button {
|
||||
display:none
|
||||
}
|
||||
.on {
|
||||
color:#029b34
|
||||
}
|
||||
.off {
|
||||
color:red
|
||||
}
|
||||
.div_r {
|
||||
background-color:#029b34;
|
||||
border-radius:4px;
|
||||
margin:2px;
|
||||
padding:1px 10px
|
||||
}
|
||||
.alert,.warning {
|
||||
color:#fff;
|
||||
margin-bottom:15px;
|
||||
padding:20px
|
||||
}
|
||||
.div_br {
|
||||
clear:both
|
||||
}
|
||||
.alert {
|
||||
background-color:#f44336
|
||||
}
|
||||
.warning {
|
||||
background-color:#ffca17
|
||||
}
|
||||
.closebtn {
|
||||
cursor:pointer;
|
||||
font-size:22px;
|
||||
line-height:20px;
|
||||
margin-left:15px;
|
||||
transition:.3s
|
||||
}
|
||||
.closebtn:hover {
|
||||
color:#000
|
||||
}
|
||||
section {
|
||||
overflow-x:auto;
|
||||
padding:10px 0
|
||||
}
|
||||
footer {
|
||||
padding:0 5px;
|
||||
word-break:break-all
|
||||
}
|
||||
@media screen and (max-width:780px) {
|
||||
.showmenulabel {
|
||||
display:none
|
||||
}
|
||||
a.menu {
|
||||
width:12%
|
||||
}
|
||||
}
|
||||
@media screen and (max-width:450px) {
|
||||
table.normal {
|
||||
min-width:300px
|
||||
}
|
||||
input.wide:focus {
|
||||
left:4px;
|
||||
position:absolute;
|
||||
z-index:1
|
||||
}
|
||||
.container {
|
||||
display:inline;
|
||||
user-select:none
|
||||
}
|
||||
}
|
||||
@media (prefers-color-scheme:dark) {
|
||||
input,select {
|
||||
background-color:#444
|
||||
}
|
||||
h3 {
|
||||
background-color:#2e2e2e
|
||||
}
|
||||
.dotmark {
|
||||
background-color:#eee
|
||||
}
|
||||
.container2 .dotmark:after {
|
||||
background:#fff
|
||||
}
|
||||
#toastmessage {
|
||||
background-color:#00000085;
|
||||
color:#fff
|
||||
}
|
||||
table.multirow th,table.normal th {
|
||||
background-color:#444;
|
||||
border-color:#545454;
|
||||
color:#dfdfdf
|
||||
}
|
||||
table.multirow td {
|
||||
border-color:#545454
|
||||
}
|
||||
table.multirow tr:nth-child(odd) {
|
||||
background-color:#2a2c2e
|
||||
}
|
||||
.highlight td {
|
||||
background-color:#553044
|
||||
}
|
||||
.note {
|
||||
color:#7b7b7b
|
||||
}
|
||||
.menu {
|
||||
background-color:transparent;
|
||||
color:#fff
|
||||
}
|
||||
.menu.active {
|
||||
background-color:#222;
|
||||
border-color:transparent;
|
||||
color:#fff
|
||||
}
|
||||
.menu:hover {
|
||||
background:#00000030;
|
||||
color:#fff
|
||||
}
|
||||
.div_r {
|
||||
background-color:#30553d
|
||||
}
|
||||
.alert,.warning {
|
||||
color:#fff
|
||||
}
|
||||
.closebtn:hover {
|
||||
color:#000
|
||||
}
|
||||
.apheader,.bodymenu,.checkmark,table.multirow tr,table.normal td,table.normal tr,tbody,textarea {
|
||||
background-color:#222
|
||||
}
|
||||
*,.closebtn,.div_r,.textarea,h1,h6,input.wide,select.wide,textarea {
|
||||
color:#c3c3c3
|
||||
}
|
||||
.button,.container input:checked~.checkmark,.headermenu {
|
||||
background-color:#44607a
|
||||
}
|
||||
}
|
||||
|
||||
Vendored
+1
File diff suppressed because one or more lines are too long
+29
-46
@@ -1,10 +1,10 @@
|
||||
h1,h6 {
|
||||
color:#07D
|
||||
color:#07d
|
||||
}
|
||||
.checkmark:after,.dotmark:after {
|
||||
content:'';
|
||||
display:none;
|
||||
position:absolute;
|
||||
content: ''
|
||||
position:absolute
|
||||
}
|
||||
.button,.menu {
|
||||
text-decoration:none
|
||||
@@ -18,26 +18,16 @@ h1,h6 {
|
||||
}
|
||||
* {
|
||||
box-sizing:border-box;
|
||||
font-family:sans-serif;
|
||||
font-size:12pt;
|
||||
font-family: sans-serif;
|
||||
font-size: 12pt;
|
||||
margin:0
|
||||
}
|
||||
h1 {
|
||||
font-size:16pt;
|
||||
margin:8px 0
|
||||
}
|
||||
h2,h3 {
|
||||
font-size:12pt
|
||||
}
|
||||
h2 {
|
||||
background-color:#444;
|
||||
color:#FFF;
|
||||
margin:0 -4px;
|
||||
padding:6px
|
||||
}
|
||||
h3 {
|
||||
background-color:#cacaca;
|
||||
color:#444;
|
||||
margin:-4px;
|
||||
padding:6px
|
||||
}
|
||||
@@ -45,14 +35,13 @@ h6 {
|
||||
font-size:10pt
|
||||
}
|
||||
code,kbd,pre,samp,tt,xmp {
|
||||
font-family:monospace,monospace;
|
||||
font-size:1em
|
||||
font:1em monospace,monospace
|
||||
}
|
||||
.button {
|
||||
background-color:#07D;
|
||||
background-color:#07d;
|
||||
border:0;
|
||||
border-radius:5px;
|
||||
color:#FFF;
|
||||
color:#fff;
|
||||
margin:4px;
|
||||
padding:4px 16px
|
||||
}
|
||||
@@ -82,6 +71,7 @@ code,kbd,pre,samp,tt,xmp {
|
||||
}
|
||||
input,select,textarea {
|
||||
background-color:#eee;
|
||||
margin:4px;
|
||||
padding:4px 8px
|
||||
}
|
||||
input.wide,select.wide {
|
||||
@@ -159,10 +149,10 @@ input.wide,select.wide {
|
||||
.logviewer,textarea {
|
||||
font-family:'Lucida Console',Monaco,monospace;
|
||||
height:60vh;
|
||||
width:100%
|
||||
width:-webkit-fill-available
|
||||
}
|
||||
#toastmessage {
|
||||
background-color:#07D;
|
||||
background-color:#07d;
|
||||
border-radius:5px;
|
||||
bottom:30%;
|
||||
color:#fff;
|
||||
@@ -186,7 +176,7 @@ input.wide,select.wide {
|
||||
position:absolute
|
||||
}
|
||||
.container input:checked~.checkmark,.container2 input:checked~.dotmark {
|
||||
background-color:#07D
|
||||
background-color:#07d
|
||||
}
|
||||
.container input:checked~.checkmark:after,.container2,.container2 input:checked~.dotmark:after {
|
||||
display:block
|
||||
@@ -212,22 +202,22 @@ input.wide,select.wide {
|
||||
}
|
||||
}
|
||||
.level_0 {
|
||||
color:#F1F1F1
|
||||
color:#f1f1f1
|
||||
}
|
||||
.level_1 {
|
||||
color:#FCFF95
|
||||
color:#fcff95
|
||||
}
|
||||
.level_2 {
|
||||
color:#9DCEFE
|
||||
color:#9dcefe
|
||||
}
|
||||
.level_3 {
|
||||
color:#A4FC79
|
||||
color:#a4fc79
|
||||
}
|
||||
.level_4 {
|
||||
color:#F2AB39
|
||||
color:#f2ab39
|
||||
}
|
||||
.level_9 {
|
||||
color:#F50
|
||||
color:#f50
|
||||
}
|
||||
.logviewer {
|
||||
background-color:#272727;
|
||||
@@ -235,27 +225,20 @@ input.wide,select.wide {
|
||||
overflow:auto
|
||||
}
|
||||
tbody {
|
||||
display:inline-block;
|
||||
overflow:auto
|
||||
}
|
||||
table.multirow th,table.normal th {
|
||||
align-content:center;
|
||||
background-color:#444;
|
||||
border-color:silver;
|
||||
border-width:thin;
|
||||
color:#FFF;
|
||||
color:#fff;
|
||||
padding:6px;
|
||||
text-align:center;
|
||||
width:100vw
|
||||
}
|
||||
tr td {
|
||||
border-width:thin
|
||||
}
|
||||
table.multirow,table.normal {
|
||||
border-spacing:0;
|
||||
border-style:none;
|
||||
min-width:420px;
|
||||
padding-bottom:5px
|
||||
padding-bottom:5px;
|
||||
width:100%
|
||||
}
|
||||
table.multirow tr,table.normal td,table.normal tr {
|
||||
padding:4px
|
||||
@@ -276,7 +259,7 @@ table.multirow tr:nth-child(odd) {
|
||||
background-color:#dbff0075
|
||||
}
|
||||
.apheader,.headermenu {
|
||||
background-color:#F8F8F8;
|
||||
background-color:#f8f8f8;
|
||||
padding:8px 12px;
|
||||
width:100vw
|
||||
}
|
||||
@@ -315,7 +298,7 @@ a.menu {
|
||||
white-space:nowrap
|
||||
}
|
||||
.menu.active {
|
||||
background-color:#FFF;
|
||||
background-color:#fff;
|
||||
border-color:#444 #444 #fff;
|
||||
border-width:.1px;
|
||||
color:#000
|
||||
@@ -328,13 +311,13 @@ a.menu {
|
||||
display:none
|
||||
}
|
||||
.on {
|
||||
color:#029B34
|
||||
color:#029b34
|
||||
}
|
||||
.off {
|
||||
color:red
|
||||
}
|
||||
.div_r {
|
||||
background-color:#029B34;
|
||||
background-color:#029b34;
|
||||
border-radius:4px;
|
||||
margin:2px;
|
||||
padding:1px 10px
|
||||
@@ -369,9 +352,9 @@ section {
|
||||
}
|
||||
footer {
|
||||
padding:0 5px;
|
||||
word-break:break-word
|
||||
word-break:break-all
|
||||
}
|
||||
@media screen and (max-width: 780px) {
|
||||
@media screen and (max-width:780px) {
|
||||
.showmenulabel {
|
||||
display:none
|
||||
}
|
||||
@@ -379,7 +362,7 @@ footer {
|
||||
width:12%
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: 450px) {
|
||||
@media screen and (max-width:450px) {
|
||||
table.normal {
|
||||
min-width:300px
|
||||
}
|
||||
@@ -392,4 +375,4 @@ footer {
|
||||
display:inline;
|
||||
user-select:none
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -1 +1 @@
|
||||
h1,h6{color:#07d}.checkmark:after,.dotmark:after{display:none;position:absolute;content:''}.button,.menu{text-decoration:none}.div_l,.menu{float:left}.closebtn,.div_r{color:#fff;float:right}*{box-sizing:border-box;font-family:sans-serif;font-size:12pt;margin:0}h1{font-size:16pt;margin:8px 0}h2,h3{font-size:12pt}h2{background-color:#444;color:#fff;margin:0 -4px;padding:6px}h3{background-color:#cacaca;color:#444;margin:-4px;padding:6px}h6{font-size:10pt}code,kbd,pre,samp,tt,xmp{font-family:monospace,monospace;font-size:1em}.button{background-color:#07d;border:0;border-radius:5px;color:#fff;margin:4px;padding:4px 16px}.button.help,.checkmark,input,select,textarea{border-color:gray;border-style:solid;border-width:1px}.button.link.wide{display:inline-block;text-align:center;width:100%}.button.link.red{background-color:red}.button.help{border-radius:50%;font-family:monospace;padding:2px 7px}.checkmark,input,select,textarea{border-radius:5px}.button:hover{background:#369}input,select,textarea{background-color:#eee;padding:4px 8px}input.wide,select.wide{margin-bottom:5px;max-width:350px;width:95%}.widenumber{max-width:500px;width:100px}.container,.container2{cursor:pointer;font-size:12pt;padding-left:35px}.container{display:block;height:30px;margin-left:4px;margin-top:0;position:relative;user-select:none}.checkmark.disabled{background-color:grey}.checkmark{background-color:#eee;height:25px;left:0;position:absolute;top:0;width:25px}.container .checkmark:after{border:solid #fff;border-width:0 3px 3px 0;height:10px;left:7px;top:3px;transform:rotate(45deg);width:5px}#toastmessage,.dotmark,.logviewer{border-color:gray;border-style:solid}#toastmessage,.dotmark{border-width:1px}.container2{margin-bottom:20px;margin-left:9px;position:relative;user-select:none}.dotmark{background-color:#eee;border-radius:50%;height:26px;left:0;position:absolute;top:0;width:26px}.container2 .dotmark:after{background:#fff;border-radius:50%;height:8px;left:8px;top:8px;width:8px}.logviewer,textarea{font-family:'Lucida Console',Monaco,monospace;height:60vh;width:100%}#toastmessage{background-color:#07d;border-radius:5px;bottom:30%;color:#fff;font-size:17px;left:282px;margin-left:-125px;min-width:250px;padding:16px;position:fixed;text-align:center;visibility:hidden;z-index:1}#toastmessage.show{animation:fadein .5s,fadeout .5s 2.5s;visibility:visible}.container input,.container2 input{cursor:pointer;opacity:0;position:absolute}.container input:checked~.checkmark,.container2 input:checked~.dotmark{background-color:#07d}.container input:checked~.checkmark:after,.container2,.container2 input:checked~.dotmark:after{display:block}@keyframes fadein{from{bottom:20%;opacity:0}to{bottom:30%;opacity:.9}}@keyframes fadeout{from{bottom:30%;opacity:.9}to{bottom:0;opacity:0}}.level_0{color:#f1f1f1}.level_1{color:#fcff95}.level_2{color:#9dcefe}.level_3{color:#a4fc79}.level_4{color:#f2ab39}.level_9{color:#f50}.logviewer{background-color:#272727;color:#f1f1f1;overflow:auto}tbody{display:inline-block;overflow:auto}table.multirow th,table.normal th{align-content:center;background-color:#444;border-color:silver;border-width:thin;color:#fff;padding:6px;text-align:center;width:100vw}tr td{border-width:thin}table.multirow,table.normal{border-spacing:0;border-style:none;min-width:420px;padding-bottom:5px}table.multirow tr,table.normal td,table.normal tr{padding:4px}table.normal td{height:30px}table.multirow td{border-color:silver;height:30px;padding:4px;text-align:center}table.multirow tr:nth-child(odd){background-color:#e8e8e8}.highlight td{background-color:#dbff0075}.apheader,.headermenu{background-color:#f8f8f8;padding:8px 12px;width:100vw}.note{color:#444;font-style:italic}.headermenu{border-bottom:.1px solid #444;height:100px;position:fixed;top:0;z-index:1}.bodymenu{background-color:#fff;height:100vh;padding-top:100px}.menubar{position:inherit;top:54px;width:100%}a.menu{align-items:center;display:flex;height:46px;justify-content:center}.menu{border:solid transparent 1px;border-radius:5px 5px 0 0;color:#444;padding:10px 10px 8px;white-space:nowrap}.menu.active{background-color:#fff;border-color:#444 #444 #fff;border-width:.1px;color:#000}.menu:hover{background:#bdbdbd;color:#000}.menu_button{display:none}.on{color:#029b34}.off{color:red}.div_r{background-color:#029b34;border-radius:4px;margin:2px;padding:1px 10px}.alert,.warning{color:#fff;margin-bottom:15px;padding:20px}.div_br{clear:both}.alert{background-color:#f44336}.warning{background-color:#ffca17}.closebtn{cursor:pointer;font-size:22px;line-height:20px;margin-left:15px;transition:.3s}.closebtn:hover{color:#000}section{overflow-x:auto;padding:10px 0}footer{padding:0 5px;word-break:break-word}@media screen and (max-width:780px){.showmenulabel{display:none}a.menu{width:12%}}@media screen and (max-width:450px){table.normal{min-width:300px}input.wide:focus{left:4px;position:absolute;z-index:1}.container{display:inline;user-select:none}}
|
||||
h1,h6{color:#07d}.checkmark:after,.dotmark:after{content:'';display:none;position:absolute}.button,.menu{text-decoration:none}.div_l,.menu{float:left}.closebtn,.div_r{color:#fff;float:right}*{box-sizing:border-box;font-family:sans-serif;font-size:12pt;margin:0}h1{font-size:16pt;margin:8px 0}h3{background-color:#cacaca;margin:-4px;padding:6px}h6{font-size:10pt}code,kbd,pre,samp,tt,xmp{font:1em monospace,monospace}.button{background-color:#07d;border:0;border-radius:5px;color:#fff;margin:4px;padding:4px 16px}.button.help,.checkmark,input,select,textarea{border-color:gray;border-style:solid;border-width:1px}.button.link.wide{display:inline-block;text-align:center;width:100%}.button.link.red{background-color:red}.button.help{border-radius:50%;font-family:monospace;padding:2px 7px}.checkmark,input,select,textarea{border-radius:5px}.button:hover{background:#369}input,select,textarea{background-color:#eee;margin:4px;padding:4px 8px}input.wide,select.wide{margin-bottom:5px;max-width:350px;width:95%}.widenumber{max-width:500px;width:100px}.container,.container2{cursor:pointer;font-size:12pt;padding-left:35px}.container{display:block;height:30px;margin-left:4px;margin-top:0;position:relative;user-select:none}.checkmark.disabled{background-color:grey}.checkmark{background-color:#eee;height:25px;left:0;position:absolute;top:0;width:25px}.container .checkmark:after{border:solid #fff;border-width:0 3px 3px 0;height:10px;left:7px;top:3px;transform:rotate(45deg);width:5px}#toastmessage,.dotmark,.logviewer{border-color:gray;border-style:solid}#toastmessage,.dotmark{border-width:1px}.container2{margin-bottom:20px;margin-left:9px;position:relative;user-select:none}.dotmark{background-color:#eee;border-radius:50%;height:26px;left:0;position:absolute;top:0;width:26px}.container2 .dotmark:after{background:#fff;border-radius:50%;height:8px;left:8px;top:8px;width:8px}.logviewer,textarea{font-family:'Lucida Console',Monaco,monospace;height:60vh;width:-webkit-fill-available}#toastmessage{background-color:#07d;border-radius:5px;bottom:30%;color:#fff;font-size:17px;left:282px;margin-left:-125px;min-width:250px;padding:16px;position:fixed;text-align:center;visibility:hidden;z-index:1}#toastmessage.show{animation:fadein .5s,fadeout .5s 2.5s;visibility:visible}.container input,.container2 input{cursor:pointer;opacity:0;position:absolute}.container input:checked~.checkmark,.container2 input:checked~.dotmark{background-color:#07d}.container input:checked~.checkmark:after,.container2,.container2 input:checked~.dotmark:after{display:block}@keyframes fadein{from{bottom:20%;opacity:0}to{bottom:30%;opacity:.9}}@keyframes fadeout{from{bottom:30%;opacity:.9}to{bottom:0;opacity:0}}.level_0{color:#f1f1f1}.level_1{color:#fcff95}.level_2{color:#9dcefe}.level_3{color:#a4fc79}.level_4{color:#f2ab39}.level_9{color:#f50}.logviewer{background-color:#272727;color:#f1f1f1;overflow:auto}tbody{overflow:auto}table.multirow th,table.normal th{background-color:#444;color:#fff;padding:6px;width:100vw}table.multirow,table.normal{border-spacing:0;border-style:none;min-width:420px;padding-bottom:5px;width:100%}table.multirow tr,table.normal td,table.normal tr{padding:4px}table.normal td{height:30px}table.multirow td{border-color:silver;height:30px;padding:4px;text-align:center}table.multirow tr:nth-child(odd){background-color:#e8e8e8}.highlight td{background-color:#dbff0075}.apheader,.headermenu{background-color:#f8f8f8;padding:8px 12px;width:100vw}.note{color:#444;font-style:italic}.headermenu{border-bottom:.1px solid #444;height:100px;position:fixed;top:0;z-index:1}.bodymenu{background-color:#fff;height:100vh;padding-top:100px}.menubar{position:inherit;top:54px;width:100%}a.menu{align-items:center;display:flex;height:46px;justify-content:center}.menu{border:solid transparent 1px;border-radius:5px 5px 0 0;color:#444;padding:10px 10px 8px;white-space:nowrap}.menu.active{background-color:#fff;border-color:#444 #444 #fff;border-width:.1px;color:#000}.menu:hover{background:#bdbdbd;color:#000}.menu_button{display:none}.on{color:#029b34}.off{color:red}.div_r{background-color:#029b34;border-radius:4px;margin:2px;padding:1px 10px}.alert,.warning{color:#fff;margin-bottom:15px;padding:20px}.div_br{clear:both}.alert{background-color:#f44336}.warning{background-color:#ffca17}.closebtn{cursor:pointer;font-size:22px;line-height:20px;margin-left:15px;transition:.3s}.closebtn:hover{color:#000}section{overflow-x:auto;padding:10px 0}footer{padding:0 5px;word-break:break-all}@media screen and (max-width:780px){.showmenulabel{display:none}a.menu{width:12%}}@media screen and (max-width:450px){table.normal{min-width:300px}input.wide:focus{left:4px;position:absolute;z-index:1}.container{display:inline;user-select:none}}
|
||||
Reference in New Issue
Block a user