compress-css

This commit is contained in:
unknown
2024-10-15 14:39:43 +08:00
parent b449c87c4e
commit b9dd7795a8
28 changed files with 76 additions and 18151 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1,388 +0,0 @@
/* BASICS */
.CodeMirror {
/* Set height, width, borders, and global font properties here */
font-family: monospace;
height: 300px;
color: black;
direction: ltr;
cursor: text;
}
/* PADDING */
.CodeMirror-lines {
padding: 4px 0; /* Vertical padding around content */
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
padding: 0 4px; /* Horizontal padding of content */
}
.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
background-color: white; /* The little square between H and V scrollbars */
}
/* GUTTER */
.CodeMirror-gutters {
border-right: 1px solid #ddd;
background-color: #f7f7f7;
white-space: nowrap;
}
.CodeMirror-linenumbers {}
.CodeMirror-linenumber {
padding: 0 3px 0 5px;
min-width: 20px;
text-align: right;
color: #999;
white-space: nowrap;
}
.CodeMirror-guttermarker { color: black; }
.CodeMirror-guttermarker-subtle { color: #999; }
/* CURSOR */
.CodeMirror-cursor {
border-left: 1px solid black;
border-right: none;
width: 0;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
border-left: 1px solid silver;
}
.cm-fat-cursor .CodeMirror-cursor {
width: auto;
border: 0 !important;
background: #7e7;
}
.cm-fat-cursor div.CodeMirror-cursors {
z-index: 1;
}
.cm-fat-cursor-mark {
background-color: rgba(20, 255, 20, 0.5);
-webkit-animation: blink 1.06s steps(1) infinite;
-moz-animation: blink 1.06s steps(1) infinite;
animation: blink 1.06s steps(1) infinite;
}
.cm-animate-fat-cursor {
width: auto;
-webkit-animation: blink 1.06s steps(1) infinite;
-moz-animation: blink 1.06s steps(1) infinite;
animation: blink 1.06s steps(1) infinite;
background-color: #7e7;
}
@-moz-keyframes blink {
0% {}
50% { background-color: transparent; }
100% {}
}
@-webkit-keyframes blink {
0% {}
50% { background-color: transparent; }
100% {}
}
@keyframes blink {
0% {}
50% { background-color: transparent; }
100% {}
}
/* Can style cursor different in overwrite (non-insert) mode */
.CodeMirror-overwrite .CodeMirror-cursor {}
.cm-tab { display: inline-block; text-decoration: inherit; }
.CodeMirror-rulers {
position: absolute;
left: 0; right: 0; top: -50px; bottom: 0;
overflow: hidden;
}
.CodeMirror-ruler {
border-left: 1px solid #ccc;
top: 0; bottom: 0;
position: absolute;
}
/* DEFAULT THEME */
.cm-s-default .cm-header {color: blue;}
.cm-s-default .cm-quote {color: #090;}
.cm-negative {color: #d44;}
.cm-positive {color: #292;}
.cm-header, .cm-strong {font-weight: bold;}
.cm-em {font-style: italic;}
.cm-link {text-decoration: underline;}
.cm-strikethrough {text-decoration: line-through;}
.cm-s-default .cm-keyword {color: #708;}
.cm-s-default .cm-atom {color: #219;}
.cm-s-default .cm-number {color: #164;}
.cm-s-default .cm-def {color: #00f;}
.cm-s-default .cm-variable,
.cm-s-default .cm-punctuation,
.cm-s-default .cm-property,
.cm-s-default .cm-operator {}
.cm-s-default .cm-variable-2 {color: #05a;}
.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}
.cm-s-default .cm-comment {color: #a50;}
.cm-s-default .cm-string {color: #a11;}
.cm-s-default .cm-string-2 {color: #f50;}
.cm-s-default .cm-meta {color: #555;}
.cm-s-default .cm-qualifier {color: #555;}
.cm-s-default .cm-builtin {color: #30a;}
.cm-s-default .cm-bracket {color: #997;}
.cm-s-default .cm-tag {color: #170;}
.cm-s-default .cm-attribute {color: #00c;}
.cm-s-default .cm-hr {color: #999;}
.cm-s-default .cm-link {color: #00c;}
.cm-s-default .cm-error {color: #f00;}
.cm-invalidchar {color: #f00;}
.CodeMirror-composing { border-bottom: 2px solid; }
/* Default styles for common addons */
div.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}
.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
.CodeMirror-activeline-background {background: #e8f2ff;}
/* STOP */
/* The rest of this file contains styles related to the mechanics of
the editor. You probably shouldn't touch them. */
.CodeMirror {
position: relative;
overflow: hidden;
background: white;
}
.CodeMirror-scroll {
overflow: scroll !important; /* Things will break if this is overridden */
/* 50px is the magic margin used to hide the element's real scrollbars */
/* See overflow: hidden in .CodeMirror */
margin-bottom: -50px; margin-right: -50px;
padding-bottom: 50px;
height: 100%;
outline: none; /* Prevent dragging from highlighting the element */
position: relative;
}
.CodeMirror-sizer {
position: relative;
border-right: 50px solid transparent;
}
/* The fake, visible scrollbars. Used to force redraw during scrolling
before actual scrolling happens, thus preventing shaking and
flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
position: absolute;
z-index: 6;
display: none;
outline: none;
}
.CodeMirror-vscrollbar {
right: 0; top: 0;
overflow-x: hidden;
overflow-y: scroll;
}
.CodeMirror-hscrollbar {
bottom: 0; left: 0;
overflow-y: hidden;
overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
right: 0; bottom: 0;
}
.CodeMirror-gutter-filler {
left: 0; bottom: 0;
}
.CodeMirror-gutters {
position: absolute; left: 0; top: 0;
min-height: 100%;
z-index: 3;
}
.CodeMirror-gutter {
white-space: normal;
height: 100%;
display: inline-block;
vertical-align: top;
margin-bottom: -50px;
}
.CodeMirror-gutter-wrapper {
position: absolute;
z-index: 4;
background: none !important;
border: none !important;
}
.CodeMirror-gutter-background {
position: absolute;
top: 0; bottom: 0;
z-index: 4;
}
.CodeMirror-gutter-elt {
position: absolute;
cursor: default;
z-index: 4;
}
.CodeMirror-gutter-wrapper ::selection { background-color: transparent }
.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }
.CodeMirror-lines {
cursor: text;
min-height: 1px; /* prevents collapsing before first draw */
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
/* Reset some styles that the rest of the page might have set */
-moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
border-width: 0;
background: transparent;
font-family: inherit;
font-size: inherit;
margin: 0;
white-space: pre;
word-wrap: normal;
line-height: inherit;
color: inherit;
z-index: 2;
position: relative;
overflow: visible;
-webkit-tap-highlight-color: transparent;
-webkit-font-variant-ligatures: contextual;
font-variant-ligatures: contextual;
}
.CodeMirror-wrap pre.CodeMirror-line,
.CodeMirror-wrap pre.CodeMirror-line-like {
word-wrap: break-word;
white-space: pre-wrap;
word-break: normal;
}
.CodeMirror-linebackground {
position: absolute;
left: 0; right: 0; top: 0; bottom: 0;
z-index: 0;
}
.CodeMirror-linewidget {
position: relative;
z-index: 2;
padding: 0.1px; /* Force widget margins to stay inside of the container */
}
.CodeMirror-widget {}
.CodeMirror-rtl pre { direction: rtl; }
.CodeMirror-code {
outline: none;
}
/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
-moz-box-sizing: content-box;
box-sizing: content-box;
}
.CodeMirror-measure {
position: absolute;
width: 100%;
height: 0;
overflow: hidden;
visibility: hidden;
}
.CodeMirror-cursor {
position: absolute;
pointer-events: none;
}
.CodeMirror-measure pre { position: static; }
div.CodeMirror-cursors {
visibility: hidden;
position: relative;
z-index: 3;
}
div.CodeMirror-dragcursors {
visibility: visible;
}
.CodeMirror-focused div.CodeMirror-cursors {
visibility: visible;
}
.CodeMirror-selected { background: #d9d9d9; }
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
.CodeMirror-crosshair { cursor: crosshair; }
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }
.cm-searching {
background-color: #ffa;
background-color: rgba(255, 255, 0, .4);
}
/* Used to force a border model for a node */
.cm-force-border { padding-right: .1px; }
@media print {
/* Hide the cursor when printing */
.CodeMirror div.CodeMirror-cursors {
visibility: hidden;
}
}
/* See issue #2901 */
.cm-tab-wrap-hack:after { content: ''; }
/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext { background: none; }
/* show-hint.css */
.CodeMirror-hints {
position: absolute;
z-index: 10;
overflow: hidden;
list-style: none;
margin: 0;
padding: 2px;
-webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
-moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
box-shadow: 2px 3px 5px rgba(0,0,0,.2);
border-radius: 3px;
border: 1px solid silver;
background: white;
font-size: 90%;
font-family: monospace;
max-height: 20em;
overflow-y: auto;
}
.CodeMirror-hint {
margin: 0;
padding: 0 4px;
border-radius: 2px;
white-space: pre;
color: black;
cursor: pointer;
}
li.CodeMirror-hint-active {
background: #08f;
color: white;
}

View File

@@ -1,52 +0,0 @@
/**
* Farbtastic Color Picker 1.2
* © 2008 Steven Wittens
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
.farbtastic {
position: relative;
}
.farbtastic * {
position: absolute;
cursor: crosshair;
}
.farbtastic, .farbtastic .wheel {
width: 195px;
height: 195px;
}
.farbtastic .color, .farbtastic .overlay {
top: 48px;
left: 48px;
width: 99px;
height: 99px;
}
.farbtastic .wheel {
background: url(wheel.png) no-repeat;
background-size: 195px 195px;
width: 195px;
height: 195px;
}
.farbtastic .overlay {
background: url(mask.png) no-repeat;
}
.farbtastic .marker {
width: 17px;
height: 17px;
margin: -8px 0 0 -8px;
overflow: hidden;
background: url(marker.png) no-repeat;
}

File diff suppressed because one or more lines are too long

14
css/jsgrid.min.css vendored

File diff suppressed because one or more lines are too long

View File

@@ -1,524 +0,0 @@
.triggered{
box-shadow: #1cc88a 0px 0px 10px;
}
.imtriggered{
box-shadow: #e74a3b 0px 0px 10px;
}
.blocklyTreeIcon {
font-size:1.5rem;
text-align: center;
width: 23px;
height: 1.5rem;
margin: 5px 11px 5px 7px;
}
#catControl.blocklyTreeRow > div.blocklyTreeRowContentContainer > span.blocklyTreeIcon{
background:url('../blockly/media/mark/ctrl.png') no-repeat;
background-size: 100% auto;
}
#catControl.blocklyTreeRow.blocklyTreeSelected > div.blocklyTreeRowContentContainer > span.blocklyTreeIcon{
background:url('../blockly/media/mark/ctrl2.png') no-repeat;
background-size: 100% auto;
}
#catMath.blocklyTreeRow > div.blocklyTreeRowContentContainer > span.blocklyTreeIcon{
background:url('../blockly/media/mark/math.png') no-repeat;
background-size: 100% auto;
}
#catMath.blocklyTreeRow.blocklyTreeSelected > div.blocklyTreeRowContentContainer > span.blocklyTreeIcon{
background:url('../blockly/media/mark/math2.png') no-repeat;
background-size: 100% auto;
}
#catLogic.blocklyTreeRow > div.blocklyTreeRowContentContainer > span.blocklyTreeIcon{
background:url('../blockly/media/mark/logic.png') no-repeat;
background-size: 100% auto;
}
#catLogic.blocklyTreeRow.blocklyTreeSelected > div.blocklyTreeRowContentContainer > span.blocklyTreeIcon{
background:url('../blockly/media/mark/logic2.png') no-repeat;
background-size: 100% auto;
}
#catText.blocklyTreeRow > div.blocklyTreeRowContentContainer > span.blocklyTreeIcon{
background:url('../blockly/media/mark/text.png') no-repeat;
background-size: 100% auto;
}
#catText.blocklyTreeRow.blocklyTreeSelected > div.blocklyTreeRowContentContainer > span.blocklyTreeIcon{
background:url('../blockly/media/mark/text2.png') no-repeat;
background-size: 100% auto;
}
#catLists.blocklyTreeRow > div.blocklyTreeRowContentContainer > span.blocklyTreeIcon{
background:url('../blockly/media/mark/list.png') no-repeat;
background-size: 100% auto;
}
#catLists.blocklyTreeRow.blocklyTreeSelected > div.blocklyTreeRowContentContainer > span.blocklyTreeIcon{
background:url('../blockly/media/mark/list2.png') no-repeat;
background-size: 100% auto;
}
#catDicts.blocklyTreeRow > div.blocklyTreeRowContentContainer > span.blocklyTreeIcon{
background:url('../blockly/media/mark/dict.png') no-repeat;
background-size: 100% auto;
}
#catDicts.blocklyTreeRow.blocklyTreeSelected > div.blocklyTreeRowContentContainer > span.blocklyTreeIcon{
background:url('../blockly/media/mark/dict2.png') no-repeat;
background-size: 100% auto;
}
#catVar.blocklyTreeRow > div.blocklyTreeRowContentContainer > span.blocklyTreeIcon{
background:url('../blockly/media/mark/var.png') no-repeat;
background-size: 100% auto;
}
#catVar.blocklyTreeRow.blocklyTreeSelected > div.blocklyTreeRowContentContainer > span.blocklyTreeIcon{
background:url('../blockly/media/mark/var2.png') no-repeat;
background-size: 100% auto;
}
#catFun.blocklyTreeRow > div.blocklyTreeRowContentContainer > span.blocklyTreeIcon{
background:url('../blockly/media/mark/func.png') no-repeat;
background-size: 100% auto;
}
#catFun.blocklyTreeRow.blocklyTreeSelected > div.blocklyTreeRowContentContainer > span.blocklyTreeIcon{
background:url('../blockly/media/mark/func2.png') no-repeat;
background-size: 100% auto;
}
.blocklyToolboxDiv {
overflow-x: hidden;
}
/* Adds padding around the group of categories and separators. */
.blocklyToolboxContents {
padding: .5em;
width:10rem;
}
/* Adds space between the categories, rounds the corners and adds space around the label. */
.blocklyTreeRow {
margin-bottom: 3px;
border-radius: 4px;
padding: 0 5px;
cursor: pointer;
color: #000;
}
.blocklyTreeRowContentContainer{
display:flex;
justify-content: flex-start;
width: 100%;
}
/* Changes color of the icon to white. */
.customIcon {
color: white;
font-size:1.5rem;
margin:5px;
width:2rem;
height: 1.5rem;
text-align: center;
}
/* Stacks the icon on top of the label. */
.blocklyTreeRowContentContainer {
display: flex;
flex-direction: row;
align-items: center;
}
.blocklyTreeRow {
height: initial;
}
.blocklyHtmlInput{
min-width:0!important
}
.cntb{
color:black;
font-size:1rem;
margin-top:10px;
border: 1px solid lightgray;
width:270px;
}
textarea:focus{
outline:none
}
.jsgrid-cell input, input[type=button]{
min-width: 0!important;
}
input[type="search"]{
min-width:0;
width:100px
}
.cntb td{
text-align:center;
vertical-align:middle;
padding:5px;
border: 1px solid lightgray;
}
.nnt{
font-family:Nunito,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
}
.gridbg{
background-image: linear-gradient(90deg, rgba(20, 20, 20, 0.06) 6%, rgba(0, 0, 0, 0) 6%),linear-gradient(0deg,rgba(20, 20, 20, 0.06) 6%, rgba(0, 0, 0, 0) 6%);
background-size: 20px 20px;
background-attachment: local;
}
.sidebar #sidebarToggle::after{
font-family:'FontAwesome'
}
.sidebar.toggled #sidebarToggle::after{
font-family:'FontAwesome'
}
.bd{
border: solid white 2px;
box-shadow: 1px 1px 10px #5a5c69;
}
.mingrid{
width:360px;
height: 524px !important;
}
.grid {
position: relative;
overflow: auto;
height: calc(100vh - 4.375rem);
}
.grid2 {
position: relative;
overflow: auto;
height: calc(100vh - 4.375rem);
}
@media screen and (max-width: 800px) {
.grid {
position: relative;
width:100vw;
overflow-y: scroll;
height: calc(100vh - 4.375rem);
}
.grid2 {
position: relative;
width:100vw;
overflow-y: scroll;
height: calc(100vh - 4.375rem);
}
}
@keyframes fade-in {
0% {opacity: 0;}
40% {opacity: 0;}
100% {opacity: 1;}
}
@-webkit-keyframes fade-in {
0% {opacity: 0;}
40% {opacity: 0;}
100% {opacity: 1;}
}
.prj_blk{
min-height:180px;
user-select: none;
background-color:white;
box-shadow: 1px 1px 10px lightgray;
border-radius: 0.5rem;
position:relative;
overflow: hidden;
animation: fade-in;
animation-duration: 0.5s;
-webkit-animation:fade-in 0.5s;
}
.card,lg_img{
animation: fade-in;
animation-duration: 0.5s;
-webkit-animation:fade-in 0.5s;
transition: height 0.3s;
-webkit-transition: height 0.3s;
}
.prj_blk:hover{
box-shadow: 1px 1px 40px lightgray;
transform: scale(1.05);
transition: all 0.2s;
box-shadow: #4e73df 0px 0px 60px;
}
.laydiv{
position: relative;
transform: scale(0.3);
transform-origin: top left;
z-index:1;
}
.laydiv2{
position: absolute;
width:100%;
height:100%;
background-image: linear-gradient(90deg, rgba(20, 0, 0, 0.06) 10%, rgba(0, 0, 0, 0) 10%)
,linear-gradient(0deg,rgba(20, 0, 0, 0.06) 10%, rgba(0, 0, 0, 0) 10%);
background-size: 6px 6px;
z-index:0;
border-radius: 0.5rem;
}
.laydiv3{
position: absolute;
width:100%;
height:100%;
z-index:2;
border-radius: 0.5rem;
}
.widget_list{
width:800px;
max-height:calc(100vh - 100px);
overflow: auto;
}
@media screen and (max-width: 800px) {
.widget_list{
width:280px;
max-height:550px;
overflow: auto;
}
}
.widget_div{
margin:6px 5px;
user-select: none;
background-color:white;
width:250px;height:50px;border:solid #4e73df 2px;border-radius:10px;display:flex;align-items:center;justify-content:space-between
}
.widget_div div{
display:flex;align-items:center;justify-content:center;margin:10px
}
.widget_div span{
font-weight: bold;
text-align:center;
font-size: 1.2rem;
color:#4e73df;
margin-left:8px
}
.widget_div img{
width: 30px;
height: 30px;
margin-left:5px
}
.widget_div a{
width:50px;margin-right: 20px;
}
.item{
display: block;
position: absolute;
border-radius: 0px !important;
z-index: 1;
background: #fff;
color: #fff;
user-select:none;
}
.itemrun{
display: block;
position: absolute;
border:solid lightgray 1px;
border-radius: 10px !important;
z-index: 1;
background: #fff;
color: #fff;
}
.item.muuri-item-dragging {
z-index: 3;
}
.item.muuri-item-releasing {
z-index: 2;
}
.item.muuri-item-hidden {
z-index: 0;
}
.item-content {
position: relative;
width: 100%;
height: 100%;
}
input{
min-width:250px;
}
#project_detail{
padding-left:0px;
padding-right:0px;
}
.bbbt{
margin-left:5px;margin-right:5px;margin-top:10px;
}
.userTitle{
font-weight: bold;
color:#5a5c69;
margin:0;
margin-bottom:10px;
font-size: 1rem;
}
.index-topic{
font-family: Nunito,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}
.topicDiv{
text-align: center;
}
.moveDiv{
cursor:move
}
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
.ckb{
--active: #275EFE;
--active-inner: #fff;
--focus: 2px rgba(39, 94, 254, .3);
--border: #BBC1E1;
--border-hover: #275EFE;
--background: #fff;
--disabled: #F6F8FF;
--disabled-inner: #E1E6F9;
-webkit-appearance: none;
-moz-appearance: none;
height: 21px;
outline: none;
display: inline-block;
vertical-align: top;
position: relative;
margin: 0;
cursor: pointer;
border: 1px solid var(--bc, var(--border));
background: var(--b, var(--background));
-webkit-transition: background .3s, border-color .3s, box-shadow .2s;
transition: background .3s, border-color .3s, box-shadow .2s;
}
.ckb:after{
content: '';
display: block;
left: 0;
top: 0;
position: absolute;
-webkit-transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
}
.ckb:checked{
--b: var(--active);
--bc: var(--active);
--d-o: .3s;
--d-t: .6s;
--d-t-e: cubic-bezier(.2, .85, .32, 1.2);
}
.ckb:hover:not(:checked):not(:disabled){
--bc: var(--border-hover);
}
.ckb:focus{
box-shadow: 0 0 0 var(--focus);
}
.ckb:not(.switch),
input[type='radio']:not(.switch) {
width: 21px;
}
.ckb:not(.switch):after,
input[type='radio']:not(.switch):after {
opacity: var(--o, 0);
}
.ckb:not(.switch):checked,
input[type='radio']:not(.switch):checked {
--o: 1;
}
.ckb + label{
font-size: 14px;
line-height: 21px;
display: inline-block;
vertical-align: top;
cursor: pointer;
margin-left: 4px;
}
.ckb:not(.switch) {
border-radius: 7px;
}
.ckb:not(.switch):after {
width: 5px;
height: 9px;
border: 2px solid var(--active-inner);
border-top: 0;
border-left: 0;
left: 7px;
top: 4px;
-webkit-transform: rotate(var(--r, 20deg));
transform: rotate(var(--r, 20deg));
}
.ckb:not(.switch):checked {
--r: 43deg;
}
.ckb.switch {
width: 38px;
border-radius: 11px;
}
.ckb.switch:after {
left: 2px;
top: 2px;
border-radius: 50%;
width: 15px;
height: 15px;
background: var(--ab, var(--border));
-webkit-transform: translateX(var(--x, 0));
transform: translateX(var(--x, 0));
}
.ckb.switch:checked {
--ab: var(--active-inner);
--x: 17px;
}
.ckb.switch:disabled:not(:checked):after {
opacity: .6;
}
}
.ui-dialog-content{
padding:0 !important;
overflow: visible !important;
}
.pixel{
width: 18px;
height: 18px;
margin:1px;
background-color:#eeeeee;
}
.pixelrow{
display:flex;
flex-direction:row;
width: 100%;
align-items: start;
justify-content: space-between;
}
.pixelDiv{
display:flex;
flex-direction:column;
align-items: stretch;
justify-content: space-between;
width: 100%;
padding:10px;
padding-top:0;
padding-bottom: 0;
}
.ui-popup-backdrop{
pointer-events: none;
}
.button-7colors {
background: conic-gradient(#e74a3b, #fd7e14, #f6c23e, #1cc88a, #36b9cc, #4e73df, #9b59b6, #e74a3b);
border: none;
}
.button-7colors:hover{
filter: brightness(0.95);
}

View File

@@ -1,19 +0,0 @@
/* latin */
@font-face {
font-family: 'Nunito';
font-style: normal;
font-weight: 400;
src: url(../fonts/XRXV3I6Li01BKofINeaB.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
font-family: 'Nunito';
font-style: normal;
font-weight: 700;
src: url(../fonts/XRXW3I6Li01BKofAjsOUYevI.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

View File

@@ -1,324 +0,0 @@
.ui-dialog-grid{
color:black
}
.pushButton{
width: 40px;
height: 40px;
border-radius: 40px;
background-color: white!important;
border:solid #CCCCCC 5px;
cursor: pointer;
}
.pushButton2{
width: 40px;
height: 40px;
border-radius: 40px;
background-color: #4e73df!important;
border:solid #CCCCCC 5px;
cursor: pointer;
}
.pushButton:active{
background-color: #4e73df!important;
outline: 0;
}
.pushButton:visited{
background-color: white!important;
outline: 0;
}
.pushButton:link{
background-color: white!important;
outline: 0;
}
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
.switch input {display:none;}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .slider {
background-color: #4e73df;
}
input:focus + .slider {
box-shadow: 0 0 1px #4e73df;
}
input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}
.slider2 {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #4e73df;
-webkit-transition: .4s;
transition: .4s;
}
.slider2:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .slider2 {
background-color: #e74a3b;
}
input:focus + .slider2 {
box-shadow: 0 0 1px #e74a3b;
}
input:checked + .slider2:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
/* Rounded slider2s */
.slider2.round {
border-radius: 34px;
}
.slider2.round:before {
border-radius: 50%;
}
[type=range] {
-webkit-appearance: none;
background: transparent;
margin: 12px 0;
min-width:0px;
width:70%;
}
[type=range]::-moz-focus-outer {
border: 0;
}
[type=range]:focus {
outline: 0;
}
[type=range]:focus::-webkit-slider-runnable-track {
background: #ccc;
}
[type=range]:focus::-ms-fill-lower {
background: #ccc;
}
[type=range]:focus::-ms-fill-upper {
background: #ccc;
}
[type=range]::-webkit-slider-runnable-track {
cursor: default;
height: 11px;
width: 100%;
background: #ccc;
border: 2px solid #ffffff;
border-radius: 5px;
}
[type=range]::-webkit-slider-thumb {
background: #4e73df;
border-radius: 13px;
box-sizing: border-box;
cursor: default;
height: 26px;
width: 26px;
-webkit-appearance: none;
margin-top: -10px;
}
[type=range]::-moz-range-track {
cursor: default;
height: 11px;
width: 100%;
background: #ccc;
border: 2px solid #ffffff;
border-radius: 5px;
height: 4px;
}
[type=range]::-moz-range-thumb {
background: #4e73df;
border-radius: 13px;
box-sizing: border-box;
cursor: default;
height: 26px;
width: 26px;
}
[type=range]::-ms-track {
cursor: default;
height: 11px;
width: 100%;
background: transparent;
border-color: transparent;
border-width: 12px 0;
color: transparent;
}
[type=range]::-ms-fill-lower {
background: #dde3e6;
border: 2px solid #ffffff;
border-radius: 10px;
}
[type=range]::-ms-fill-upper {
background: #ccc;
border: 2px solid #ffffff;
border-radius: 10px;
}
[type=range]::-ms-thumb {
background: #4e73df;
border-radius: 13px;
box-sizing: border-box;
cursor: default;
height: 26px;
width: 26px;
margin-top: 2px;
}
[type=range]:disabled::-webkit-slider-thumb, [type=range]:disabled::-moz-range-thumb, [type=range]:disabled::-ms-thumb, [type=range]:disabled::-webkit-slider-runnable-track, [type=range]:disabled::-ms-fill-lower, [type=range]:disabled::-ms-fill-upper {
cursor: not-allowed;
}
.BMap_cpyCtrl{
display: none;
}
.anchorBL{
display: none;
}
.mid_screen{
width:calc(100% - 3rem);
height:calc(100% - 5rem);
line-height:1.2rem;
padding:0.5rem;
word-break:break-all;
color:black;
font-weight:bold;
font-size: 1rem;
display: flex;
align-items: center;
justify-content: center;
}
.bulb0{
width: 46px;
height: 46px;
border-radius: 46px;
background-color: #DCD9D4;
}
.bulb1{
width: 46px;
height: 46px;
border-radius: 46px;
background-color: #1CC88A;
box-shadow: #1CC88A 1px 1px 8px;
}
.bulb2{
width: 46px;
height: 46px;
border-radius: 46px;
background-color: #f6c23e;
box-shadow: #f6c23e 1px 1px 8px;
}
.bulb3{
width: 46px;
height: 46px;
border-radius: 46px;
background-color: #e74a3b;
box-shadow: #e74a3b 1px 1px 8px;
}
/* Header */
.zzsc-header{
padding: 1em 190px 1em;
letter-spacing: -1px;
text-align: center;
background: #66677c;
}
.zzsc-header h1 {
color: #D5D6E2;
font-weight: 600;
font-size: 2em;
line-height: 1;
margin-bottom: 0;
font-family: Nunito,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}
.zzsc-header h1 span {
font-family: Nunito,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
display: block;
font-size: 60%;
font-weight: 400;
padding: 0.8em 0 0.5em 0;
color: #c3c8cd;
}
/*nav*/
.zzsc-demo a{color: #fff;text-decoration: none;}
.zzsc-demo{width: 100%;padding-bottom: 1.2em;}
.zzsc-demo a{display: inline-block;margin: 0.5em;padding: 0.6em 1em;border: 3px solid #fff;font-weight: 700;}
.zzsc-demo a:hover{opacity: 0.6;}
.zzsc-demo a.current{background:#1d7db1;color: #fff; }
/* Top Navigation Style */
.zzsc-links {
position: relative;
display: inline-block;
white-space: nowrap;
font-size: 1.5em;
text-align: center;
}
.zzsc-links::after {
position: absolute;
top: 0;
left: 50%;
margin-left: -1px;
width: 2px;
height: 100%;
background: #dbdbdb;
content: '';
-webkit-transform: rotate3d(0,0,1,22.5deg);
transform: rotate3d(0,0,1,22.5deg);
}
.cameraDiv{
width: calc(100% - 2rem);
height: calc(100% - 4.5rem);
}