OpenBuilds-CONTROL/app/css/main.css

126 wiersze
3.6 KiB
CSS
Czysty Zwykły widok Historia

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-06-22 19:49:51 +00:00
#editor {
/* Note only uses height attribs from here, before we connect to websocket. After that, it gets set by websocket.js */
2018-08-01 19:04:27 +00:00
height: calc(100% - 1px);
2018-06-22 19:49:51 +00:00
width: 100%;
border-top: 1px solid #ccc;
margin-top: 5px;
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;
height: calc(100% - 1px);
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;
/* background-color: #444; */
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 {
max-height: calc(100vh - 205px);
height: calc(100vh - 205px);
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-07-12 13:06:53 +00:00
#updateconsole {
/*font-family: "Courier New", Courier, monospace;*/
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;
/* background-color: #444; */
padding: 0px;
font-size: 12px;
padding-left: 20px;
white-space:normal;
margin-bottom: 0px;
2018-06-20 13:00:05 +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-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;
}