2015-02-05 15:05:29 +00:00
|
|
|
|
/* configurator.css */
|
|
|
|
|
/* Styles for Marlin Configurator */
|
|
|
|
|
|
2015-02-11 12:59:07 +00:00
|
|
|
|
.clear { clear: both; }
|
|
|
|
|
|
|
|
|
|
/* Prevent selection except PRE tags */
|
|
|
|
|
* {
|
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
-khtml-user-select: none;
|
|
|
|
|
-moz-user-select: none;
|
|
|
|
|
-ms-user-select: none;
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
pre {
|
|
|
|
|
-webkit-touch-callout: text;
|
|
|
|
|
-webkit-user-select: text;
|
|
|
|
|
-khtml-user-select: text;
|
|
|
|
|
-moz-user-select: text;
|
|
|
|
|
-ms-user-select: text;
|
|
|
|
|
user-select: text;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body { margin: 0; padding: 0; background: #56A; color: #000; font-family: monospace; }
|
|
|
|
|
#main {
|
2015-02-20 10:12:00 +00:00
|
|
|
|
max-width: 1100px;
|
|
|
|
|
margin: 0 auto 10px;
|
2015-02-19 11:11:16 +00:00
|
|
|
|
padding: 0 2%; width: 96%;
|
2015-02-11 12:59:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1, h2, h3, h4, h5, h6 { clear: both; }
|
|
|
|
|
|
|
|
|
|
h1, p.info { font-family: sans-serif; }
|
|
|
|
|
h1 {
|
|
|
|
|
height: 38px;
|
|
|
|
|
margin-bottom: -30px;
|
2015-02-20 10:12:00 +00:00
|
|
|
|
color: #FFF;
|
|
|
|
|
background: transparent url(logo.png) right top no-repeat;
|
2015-02-11 12:59:07 +00:00
|
|
|
|
}
|
|
|
|
|
p.info { padding: 0; color: #000; }
|
|
|
|
|
p.info span { color: #800; }
|
|
|
|
|
|
|
|
|
|
#message { text-align: center; }
|
2015-02-07 10:04:44 +00:00
|
|
|
|
#message { width: 80%; margin: 0 auto 0.25em; color: #FF0; }
|
2015-02-13 11:02:56 +00:00
|
|
|
|
#message p { padding: 2px 0; font-weight: bold; border-radius: 0.8em; }
|
2015-02-07 07:46:16 +00:00
|
|
|
|
#message p.message { color: #080; background: #CFC; }
|
2015-02-13 11:02:56 +00:00
|
|
|
|
#message p.error { color: #F00; background: #FF4; }
|
|
|
|
|
#message p.warning { color: #FF0; background: #BA4; }
|
2015-02-15 07:44:01 +00:00
|
|
|
|
#message p.message span,
|
|
|
|
|
#message p.error span,
|
|
|
|
|
#message p.warning span {
|
2015-02-11 12:59:07 +00:00
|
|
|
|
color: #A00;
|
|
|
|
|
background: rgba(255, 255, 255, 1);
|
|
|
|
|
border: 1px solid rgba(0,0,0,0.5);
|
|
|
|
|
border-radius: 1em;
|
|
|
|
|
float: right;
|
|
|
|
|
margin-right: 0.5em;
|
|
|
|
|
padding: 0 3px;
|
|
|
|
|
font-family: sans-serif;
|
|
|
|
|
font-size: small;
|
|
|
|
|
position: relative;
|
|
|
|
|
top: -1px;
|
|
|
|
|
}
|
2015-02-07 07:46:16 +00:00
|
|
|
|
|
2015-02-05 15:05:29 +00:00
|
|
|
|
#help strong { color: #0DD; }
|
|
|
|
|
img { display: none; }
|
2015-02-11 12:59:07 +00:00
|
|
|
|
|
|
|
|
|
/* Forms */
|
|
|
|
|
|
|
|
|
|
#config_form {
|
|
|
|
|
display: block;
|
|
|
|
|
background: #EEE;
|
|
|
|
|
padding: 6px 20px 20px;
|
|
|
|
|
color: #000;
|
|
|
|
|
position: relative;
|
2015-02-20 10:12:00 +00:00
|
|
|
|
border-radius: 1.5em;
|
|
|
|
|
border-top-left-radius: 0;
|
2015-02-11 12:59:07 +00:00
|
|
|
|
}
|
|
|
|
|
fieldset {
|
|
|
|
|
height: 16.1em;
|
|
|
|
|
overflow-y: scroll;
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
2015-02-05 15:05:29 +00:00
|
|
|
|
label, input, select, textarea { display: block; float: left; margin: 1px 0; }
|
2015-02-06 04:28:39 +00:00
|
|
|
|
label.newline, textarea, fieldset { clear: both; }
|
2015-02-09 12:34:57 +00:00
|
|
|
|
label {
|
2015-02-19 11:11:16 +00:00
|
|
|
|
width: 120px; /* label area */
|
2015-02-09 12:34:57 +00:00
|
|
|
|
height: 1em;
|
|
|
|
|
padding: 10px 460px 10px 1em;
|
|
|
|
|
margin-right: -450px;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
2015-03-02 13:23:36 +00:00
|
|
|
|
label.blocked, label.added.blocked, label.added.blocked.sublabel { color: #AAA; }
|
2015-03-02 09:45:53 +00:00
|
|
|
|
|
2015-03-02 13:23:36 +00:00
|
|
|
|
label.added.sublabel {
|
|
|
|
|
width: auto;
|
2015-03-02 09:45:53 +00:00
|
|
|
|
margin: 11px -2.5em 0 1em;
|
2015-03-02 13:23:36 +00:00
|
|
|
|
padding: 0 3em 0 0;
|
2015-03-02 09:45:53 +00:00
|
|
|
|
font-style: italic;
|
|
|
|
|
color: #444;
|
|
|
|
|
}
|
2015-03-02 13:23:36 +00:00
|
|
|
|
label+label.added.sublabel {
|
2015-03-02 09:45:53 +00:00
|
|
|
|
margin-left: 0;
|
|
|
|
|
}
|
2015-03-01 06:40:20 +00:00
|
|
|
|
|
2015-02-05 19:44:43 +00:00
|
|
|
|
input[type="text"], select { margin: 0.75em 0 0; }
|
2015-02-05 19:14:31 +00:00
|
|
|
|
input[type="checkbox"], input[type="radio"], input[type="file"] { margin: 1em 0 0; }
|
2015-02-15 07:44:01 +00:00
|
|
|
|
input[type="checkbox"].enabler, input[type="radio"].enabler { margin-left: 1em; }
|
2015-02-11 12:59:07 +00:00
|
|
|
|
|
2015-02-05 15:05:29 +00:00
|
|
|
|
input:disabled { color: #BBB; }
|
2015-02-06 04:28:39 +00:00
|
|
|
|
|
2015-02-15 07:44:01 +00:00
|
|
|
|
#config_form input[type="text"].subitem { width: 4em; }
|
|
|
|
|
#config_form input[type="text"].subitem+.subitem { margin-left: 4px; }
|
2015-02-13 11:02:56 +00:00
|
|
|
|
|
2015-02-15 07:44:01 +00:00
|
|
|
|
input[type="text"].added { width: 20em; }
|
|
|
|
|
label.added {
|
2015-03-02 09:45:53 +00:00
|
|
|
|
width: 265px; /* label area */
|
2015-02-13 11:02:56 +00:00
|
|
|
|
height: 1em;
|
2015-03-02 09:45:53 +00:00
|
|
|
|
padding: 10px 370px 10px 1em;
|
|
|
|
|
margin-right: -360px;
|
2015-02-13 11:02:56 +00:00
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-09 12:34:57 +00:00
|
|
|
|
ul.tabs { padding: 0; list-style: none; }
|
2015-02-06 04:28:39 +00:00
|
|
|
|
ul.tabs li { display: inline; }
|
|
|
|
|
ul.tabs li a,
|
|
|
|
|
ul.tabs li a.active:hover,
|
|
|
|
|
ul.tabs li a.active:active {
|
|
|
|
|
display: block;
|
|
|
|
|
float: left;
|
2015-02-09 12:34:57 +00:00
|
|
|
|
background: #1E4059;
|
2015-02-06 04:28:39 +00:00
|
|
|
|
color: #CCC;
|
2015-02-09 12:34:57 +00:00
|
|
|
|
font-size: 110%;
|
2015-02-06 04:28:39 +00:00
|
|
|
|
border-radius: 0.25em 0.25em 0 0;
|
|
|
|
|
margin: 0 4px 0 0;
|
2015-02-09 12:34:57 +00:00
|
|
|
|
padding: 2px 8px;
|
2015-02-06 04:28:39 +00:00
|
|
|
|
text-decoration: none;
|
2015-02-09 12:34:57 +00:00
|
|
|
|
font-family: georgia,"times new roman",times;
|
2015-02-06 04:28:39 +00:00
|
|
|
|
}
|
|
|
|
|
ul.tabs li a.active:link,
|
|
|
|
|
ul.tabs li a.active:visited {
|
|
|
|
|
background: #DDD;
|
2015-02-09 12:34:57 +00:00
|
|
|
|
color: #06F;
|
2015-02-06 04:28:39 +00:00
|
|
|
|
cursor: default;
|
2015-02-09 12:34:57 +00:00
|
|
|
|
margin-top: -4px;
|
|
|
|
|
padding-bottom: 4px;
|
|
|
|
|
padding-top: 4px;
|
2015-02-06 04:28:39 +00:00
|
|
|
|
}
|
|
|
|
|
ul.tabs li a:hover,
|
|
|
|
|
ul.tabs li a:active {
|
2015-02-09 12:34:57 +00:00
|
|
|
|
background: #000;
|
|
|
|
|
color: #FFF;
|
2015-02-06 04:28:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fieldset { display: none; border: 1px solid #AAA; border-radius: 1em; }
|
|
|
|
|
fieldset legend { display: none; }
|
2015-02-07 07:46:16 +00:00
|
|
|
|
|
|
|
|
|
.hilightable span {
|
|
|
|
|
display: block;
|
|
|
|
|
float: left;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 1.3em;
|
|
|
|
|
background: rgba(225,255,0,1);
|
|
|
|
|
margin: 0 -100% -1em 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#serial_stepper { padding-top: 0.75em; display: block; float: left; }
|
2015-02-13 11:02:56 +00:00
|
|
|
|
/*#SERIAL_PORT { display: none; }*/
|
2015-02-07 14:20:04 +00:00
|
|
|
|
|
2015-02-11 12:59:07 +00:00
|
|
|
|
/* Tooltips */
|
|
|
|
|
|
2015-02-07 15:39:10 +00:00
|
|
|
|
#tooltip {
|
|
|
|
|
display: none;
|
|
|
|
|
max-width: 30em;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
border: 2px solid #73d699;
|
|
|
|
|
border-radius: 1em;
|
2015-02-07 14:20:04 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 999;
|
2015-02-07 15:39:10 +00:00
|
|
|
|
font-family: sans-serif;
|
|
|
|
|
font-size: 85%;
|
2015-02-07 14:20:04 +00:00
|
|
|
|
color: #000;
|
|
|
|
|
line-height: 1.1;
|
|
|
|
|
background: #e2ff99; /* Old browsers */
|
|
|
|
|
background: -moz-linear-gradient(top, #e2ff99 0%, #73d699 100%); /* FF3.6+ */
|
|
|
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e2ff99), color-stop(100%,#73d699)); /* Chrome,Safari4+ */
|
|
|
|
|
background: -webkit-linear-gradient(top, #e2ff99 0%,#73d699 100%); /* Chrome10+,Safari5.1+ */
|
|
|
|
|
background: -o-linear-gradient(top, #e2ff99 0%,#73d699 100%); /* Opera 11.10+ */
|
|
|
|
|
background: -ms-linear-gradient(top, #e2ff99 0%,#73d699 100%); /* IE10+ */
|
|
|
|
|
background: linear-gradient(to bottom, #e2ff99 0%,#73d699 100%); /* W3C */
|
|
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2ff99', endColorstr='#73d699',GradientType=0 ); /* IE6-9 */
|
|
|
|
|
-webkit-box-shadow: 0px 6px 25px -4px rgba(0,0,0,0.75);
|
|
|
|
|
-moz-box-shadow: 0px 6px 25px -4px rgba(0,0,0,0.75);
|
|
|
|
|
box-shadow: 0px 6px 25px -4px rgba(0,0,0,0.75);
|
|
|
|
|
}
|
2015-02-07 15:39:10 +00:00
|
|
|
|
#tooltip>span {
|
|
|
|
|
position: absolute;
|
2015-02-07 14:20:04 +00:00
|
|
|
|
content: "";
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
border-left: 8px solid transparent;
|
|
|
|
|
border-right: 8px solid transparent;
|
|
|
|
|
border-top: 8px solid #73d699;
|
|
|
|
|
z-index: 999;
|
2015-02-07 15:39:10 +00:00
|
|
|
|
bottom: -10px;
|
|
|
|
|
left: 20px;
|
2015-02-07 14:20:04 +00:00
|
|
|
|
}
|
2015-02-09 12:34:57 +00:00
|
|
|
|
#tooltip>strong { color: #00B; }
|
|
|
|
|
|
2015-02-11 12:59:07 +00:00
|
|
|
|
/* Tooltips Checkbox */
|
|
|
|
|
|
2015-02-15 07:44:01 +00:00
|
|
|
|
#tipson {
|
|
|
|
|
width: auto;
|
|
|
|
|
height: auto;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
float: right;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
font-size: 100%;
|
|
|
|
|
font-family: helvetica;
|
|
|
|
|
text-align: left;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
#tipson input { float: none; display: inline; cursor: pointer; }
|
2015-02-11 12:59:07 +00:00
|
|
|
|
|
|
|
|
|
/* Config Text */
|
|
|
|
|
|
|
|
|
|
pre.config {
|
|
|
|
|
height: 25em;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
border: 2px solid #888;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
clear: both;
|
|
|
|
|
background-color: #FFF;
|
|
|
|
|
color: #000;
|
2015-02-15 07:44:01 +00:00
|
|
|
|
font-family: "Fira Mono", monospace;
|
2015-02-11 12:59:07 +00:00
|
|
|
|
font-size: small;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Pre Headers */
|
|
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin: 12px -300px 4px 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Disclosure Widget */
|
|
|
|
|
|
2015-02-20 10:12:00 +00:00
|
|
|
|
span.disclose, a.download, a.download-all {︎
|
2015-02-11 12:59:07 +00:00
|
|
|
|
display: block;
|
2015-02-09 12:34:57 +00:00
|
|
|
|
float: right;
|
2015-02-11 12:59:07 +00:00
|
|
|
|
margin-top: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
span.disclose {
|
|
|
|
|
margin-right: -10px; /* total width */
|
|
|
|
|
margin-left: 14px;
|
2015-02-09 12:34:57 +00:00
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
2015-02-11 12:59:07 +00:00
|
|
|
|
position: relative;
|
|
|
|
|
left: 3px;
|
|
|
|
|
top: 3px;
|
2015-02-09 12:34:57 +00:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
border-left: 8px solid transparent;
|
|
|
|
|
border-right: 8px solid transparent;
|
|
|
|
|
border-top: 10px solid #000;
|
|
|
|
|
}
|
|
|
|
|
span.disclose.closed {
|
2015-02-11 12:59:07 +00:00
|
|
|
|
margin-right: -8px; /* total width */
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 0;
|
2015-02-09 12:34:57 +00:00
|
|
|
|
border-top: 8px solid transparent;
|
|
|
|
|
border-bottom: 8px solid transparent;
|
|
|
|
|
border-right: 10px solid #000;
|
|
|
|
|
}
|
|
|
|
|
span.disclose.almost {
|
|
|
|
|
-ms-transform: rotate(45deg); /* IE 9 */
|
|
|
|
|
-webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
|
|
|
|
|
transform: rotate(45deg);
|
|
|
|
|
}
|
|
|
|
|
span.disclose.closed.almost {
|
2015-02-11 12:59:07 +00:00
|
|
|
|
left: 1px;
|
|
|
|
|
top: 3px;
|
2015-02-09 12:34:57 +00:00
|
|
|
|
-ms-transform: rotate(315deg); /* IE 9 */
|
|
|
|
|
-webkit-transform: rotate(315deg); /* Chrome, Safari, Opera */
|
|
|
|
|
transform: rotate(315deg);
|
|
|
|
|
}
|
2015-02-11 12:59:07 +00:00
|
|
|
|
|
|
|
|
|
/* Download Button */
|
|
|
|
|
|
2015-02-20 10:12:00 +00:00
|
|
|
|
a.download, a.download-all {
|
2015-02-11 12:59:07 +00:00
|
|
|
|
visibility: hidden;
|
|
|
|
|
padding: 2px;
|
|
|
|
|
border: 1px solid #494;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
margin: 12px 0 0;
|
|
|
|
|
background: #FFF;
|
|
|
|
|
color: #494;
|
|
|
|
|
font-family: sans-serif;
|
|
|
|
|
font-size: small;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
2015-02-20 10:12:00 +00:00
|
|
|
|
a.download-all { margin: 9px 2em 0; color: #449; border-color: #449; }
|
2015-02-11 12:59:07 +00:00
|
|
|
|
|
2015-03-02 09:45:53 +00:00
|
|
|
|
input[type="text"].one_of_2 { max-width: 15%; }
|
|
|
|
|
input[type="text"].one_of_3 { max-width: 10%; }
|
|
|
|
|
input[type="text"].one_of_4 { max-width: 7%; }
|
|
|
|
|
|
|
|
|
|
select.one_of_2 { max-width: 15%; }
|
|
|
|
|
select.one_of_3 { max-width: 10%; }
|
|
|
|
|
select.one_of_4 { max-width: 14%; }
|
|
|
|
|
select.one_of_4+span.label+select.one_of_4+span.label { clear: both; margin-left: 265px; padding-left: 1.75em; }
|
|
|
|
|
select.one_of_4+span.label+select.one_of_4+span.label+select.one_of_4+span.label { clear: none; margin-left: 1em; padding-left: 0; }
|
|
|
|
|
|
2015-02-20 10:12:00 +00:00
|
|
|
|
@media all and (min-width: 1140px) {
|
2015-02-19 11:11:16 +00:00
|
|
|
|
|
|
|
|
|
#main { max-width: 10000px; }
|
|
|
|
|
|
|
|
|
|
fieldset { float: left; width: 50%; height: auto; }
|
|
|
|
|
|
|
|
|
|
#config_text, #config_adv_text { float: right; clear: right; width: 45%; }
|
|
|
|
|
|
2015-02-19 11:41:41 +00:00
|
|
|
|
pre.config { height: 20em; }
|
2015-02-20 10:12:00 +00:00
|
|
|
|
|
|
|
|
|
.disclose { display: none; }
|
|
|
|
|
|
2015-03-02 09:45:53 +00:00
|
|
|
|
input[type="text"].one_of_2 { max-width: 15%; }
|
|
|
|
|
input[type="text"].one_of_3 { max-width: 9%; }
|
|
|
|
|
input[type="text"].one_of_4 { max-width: 8%; }
|
|
|
|
|
|
|
|
|
|
select.one_of_2 { max-width: 15%; }
|
|
|
|
|
select.one_of_3 { max-width: 10%; }
|
|
|
|
|
select.one_of_4 { max-width: 16%; }
|
|
|
|
|
|
2015-02-19 11:11:16 +00:00
|
|
|
|
}
|
2015-03-01 06:40:20 +00:00
|
|
|
|
|
2015-03-02 13:23:36 +00:00
|
|
|
|
/*label.blocked, .blocked { display: none; }*/
|
2015-03-02 09:45:53 +00:00
|
|
|
|
|