2018-06-20 13:00:05 +00:00
|
|
|
body {
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
-webkit-touch-callout: none; /* iOS Safari */
|
|
|
|
-webkit-user-select: none; /* Safari */
|
|
|
|
-khtml-user-select: none; /* Konqueror HTML */
|
|
|
|
-moz-user-select: none; /* Firefox */
|
|
|
|
-ms-user-select: none; /* Internet Explorer/Edge */
|
|
|
|
user-select: none; /* Non-prefixed version, currently
|
|
|
|
supported by Chrome and Opera */
|
|
|
|
}
|
|
|
|
|
2018-11-26 19:22:53 +00:00
|
|
|
#macros {
|
|
|
|
/* Note only uses height attribs from here, before we connect to websocket. After that, it gets set by websocket.js */
|
|
|
|
height: calc(100vh - 480px);
|
|
|
|
width: 100%;
|
|
|
|
border-top: 1px solid #ccc;
|
|
|
|
/* margin-top: 5px; */
|
|
|
|
box-shadow: 0 0 2px 2px #ddd;
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
|
2018-08-28 15:09:20 +00:00
|
|
|
#renderArea {
|
|
|
|
/* Note only uses height attribs from here, before we connect to websocket. After that, it gets set by websocket.js */
|
2018-09-06 16:10:40 +00:00
|
|
|
height: calc(100vh - 480px);
|
2018-08-28 15:09:20 +00:00
|
|
|
width: 100%;
|
|
|
|
border-top: 1px solid #ccc;
|
|
|
|
/* margin-top: 5px; */
|
|
|
|
box-shadow: 0 0 2px 2px #ddd;
|
2018-11-26 19:22:53 +00:00
|
|
|
background-color: #fff;
|
2018-08-28 15:09:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-06-22 19:49:51 +00:00
|
|
|
#editor {
|
2018-06-25 17:25:19 +00:00
|
|
|
/* Note only uses height attribs from here, before we connect to websocket. After that, it gets set by websocket.js */
|
2018-09-06 16:10:40 +00:00
|
|
|
height: calc(100vh - 480px);
|
2018-06-22 19:49:51 +00:00
|
|
|
width: 100%;
|
|
|
|
border-top: 1px solid #ccc;
|
2018-08-08 12:31:59 +00:00
|
|
|
/* margin-top: 5px; */
|
|
|
|
box-shadow: 0 0 2px 2px #ddd;
|
2018-06-22 19:49:51 +00:00
|
|
|
}
|
|
|
|
|
2018-08-01 19:04:27 +00:00
|
|
|
#console {
|
|
|
|
/*font-family: "Courier New", Courier, monospace;*/
|
|
|
|
font-family: "Lucida Console", Monaco, monospace;
|
2018-12-20 19:22:02 +00:00
|
|
|
height: calc(100vh - 505px);
|
2018-06-25 20:13:58 +00:00
|
|
|
width: 100%;
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: none;
|
2018-08-01 19:04:27 +00:00
|
|
|
text-align: left;
|
2018-08-07 19:25:56 +00:00
|
|
|
background-color: #fff;
|
2018-08-08 12:31:59 +00:00
|
|
|
box-shadow: 0 0 2px 2px #ddd;
|
2018-08-01 19:04:27 +00:00
|
|
|
padding: 0px;
|
|
|
|
font-size: 12px;
|
|
|
|
padding-left: 20px;
|
|
|
|
white-space:normal;
|
|
|
|
margin-bottom: 0px;
|
2018-06-25 20:13:58 +00:00
|
|
|
-webkit-touch-callout: text; /* iOS Safari */
|
|
|
|
-webkit-user-select: text; /* Safari */
|
|
|
|
-khtml-user-select: text; /* Konqueror HTML */
|
|
|
|
-moz-user-select: text; /* Firefox */
|
|
|
|
-ms-user-select: text; /* Internet Explorer/Edge */
|
|
|
|
user-select: text; /* Non-prefixed version, currently
|
|
|
|
supported by Chrome and Opera */
|
|
|
|
}
|
|
|
|
|
2018-08-01 19:04:27 +00:00
|
|
|
#grblPanel {
|
2018-08-07 19:25:56 +00:00
|
|
|
max-height: calc(100vh - 215px);
|
|
|
|
height: calc(100vh - 215px);
|
2018-06-19 20:25:40 +00:00
|
|
|
width: 100%;
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: none;
|
2018-08-01 19:04:27 +00:00
|
|
|
padding: 8px;
|
2018-07-12 13:06:53 +00:00
|
|
|
-webkit-touch-callout: text; /* iOS Safari */
|
|
|
|
-webkit-user-select: text; /* Safari */
|
|
|
|
-khtml-user-select: text; /* Konqueror HTML */
|
|
|
|
-moz-user-select: text; /* Firefox */
|
|
|
|
-ms-user-select: text; /* Internet Explorer/Edge */
|
|
|
|
user-select: text; /* Non-prefixed version, currently
|
|
|
|
supported by Chrome and Opera */
|
|
|
|
}
|
|
|
|
|
2018-08-01 19:04:27 +00:00
|
|
|
|
|
|
|
|
2018-08-10 19:42:30 +00:00
|
|
|
/* #updateconsole {
|
|
|
|
|
2018-07-12 13:06:53 +00:00
|
|
|
font-family: "Lucida Console", Monaco, monospace;
|
|
|
|
max-height: calc(100vh - 260px);
|
|
|
|
height: calc(100vh - 200px);
|
|
|
|
width: 100%;
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: none;
|
|
|
|
text-align: left;
|
|
|
|
padding: 0px;
|
|
|
|
font-size: 12px;
|
|
|
|
padding-left: 20px;
|
|
|
|
white-space:normal;
|
|
|
|
margin-bottom: 0px;
|
2018-08-10 19:42:30 +00:00
|
|
|
-webkit-touch-callout: text;
|
|
|
|
-webkit-user-select: text;
|
|
|
|
-khtml-user-select: text;
|
|
|
|
-moz-user-select: text;
|
|
|
|
-ms-user-select: text;
|
|
|
|
user-select: text;
|
|
|
|
} */
|
2018-06-19 20:25:40 +00:00
|
|
|
|
|
|
|
.pf {
|
|
|
|
margin-top: 0px;
|
|
|
|
margin-bottom: -4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
select{
|
2018-06-27 19:23:34 +00:00
|
|
|
font-family: 'FontAwesome', sans-serif;
|
2018-06-19 20:25:40 +00:00
|
|
|
}
|
2018-06-21 21:04:41 +00:00
|
|
|
|
|
|
|
.btn-file {
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
2018-07-26 16:19:59 +00:00
|
|
|
margin-top: 0px !important;
|
|
|
|
margin-bottom: 0px !important;
|
|
|
|
margin-left: 0px !important;
|
|
|
|
margin-right: 0px !important;
|
2018-06-21 21:04:41 +00:00
|
|
|
}
|
|
|
|
.btn-file input[type=file] {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
min-width: 100%;
|
|
|
|
min-height: 100%;
|
|
|
|
font-size: 100px;
|
|
|
|
text-align: right;
|
|
|
|
filter: alpha(opacity=0);
|
|
|
|
opacity: 0;
|
|
|
|
outline: none;
|
|
|
|
background: white;
|
|
|
|
cursor: inherit;
|
|
|
|
display: block;
|
|
|
|
}
|
2018-08-01 19:04:27 +00:00
|
|
|
|
|
|
|
/* OpenBuilds Navbar for MetroWindows */
|
|
|
|
.fg-openbuilds {
|
|
|
|
color: rgb(74, 78, 81) !important;
|
|
|
|
}
|
|
|
|
.bg-openbuilds {
|
|
|
|
background-color: rgb(74, 78, 81) !important;
|
|
|
|
}
|
2018-09-18 19:26:29 +00:00
|
|
|
.bd-openbuilds {
|
|
|
|
border-color: rgb(74, 78, 81) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.openbuilds-switch .check::after {
|
|
|
|
background: rgb(74, 78, 81) !important;
|
|
|
|
border-color: rgb(74, 78, 81) !important;
|
|
|
|
}
|
|
|
|
.openbuilds-switch input[type="checkbox"]:checked ~ .check {
|
|
|
|
background: rgb(74, 78, 81) !important;
|
|
|
|
}
|
|
|
|
.openbuilds-switch input[type="checkbox"]:checked ~ .check::after {
|
|
|
|
border-color: #ffffff!important;
|
|
|
|
background: #ffffff!important;
|
|
|
|
}
|
2018-08-23 20:41:36 +00:00
|
|
|
|
|
|
|
.keyboardpanel td:nth-child(1){
|
|
|
|
width: 60px;
|
|
|
|
height: 60px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.keyboardpanel td:nth-child(2){
|
|
|
|
width: 60px;
|
|
|
|
height: 60px;
|
|
|
|
}
|
2018-09-18 14:34:11 +00:00
|
|
|
#splash {
|
|
|
|
z-index: 2000;
|
|
|
|
padding: 1000px;
|
|
|
|
background-color: #fff
|
|
|
|
}
|