2017-05-22 14:58:47 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014-2017 struktur AG
|
|
|
|
* http://www.strukturag.com
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2012-12-12 13:07:56 +01:00
|
|
|
html, body, ul, ol, li, form, fieldset, legend {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
body {
|
2017-05-22 14:31:59 +02:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2012-12-12 13:07:56 +01:00
|
|
|
background: white;
|
|
|
|
}
|
2017-05-22 14:31:59 +02:00
|
|
|
|
|
|
|
#main {
|
|
|
|
margin: 0 auto;
|
|
|
|
width: 700px;
|
|
|
|
}
|
|
|
|
|
2012-12-12 13:07:56 +01:00
|
|
|
input {
|
|
|
|
padding: 4px;
|
|
|
|
border: solid 1px #E5E5E5;
|
|
|
|
outline: 0;
|
|
|
|
background: #FFFFFF;
|
|
|
|
margin-right: 9px;
|
2017-05-22 14:31:59 +02:00
|
|
|
}
|
2012-12-12 13:07:56 +01:00
|
|
|
input:hover, input:focus {
|
|
|
|
border-color: #C9C9C9;
|
|
|
|
}
|
|
|
|
label {
|
|
|
|
padding-right: 9px;
|
|
|
|
}
|
|
|
|
#control button {
|
|
|
|
font-weight:bold;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
#control button.stop {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#control.connected button.start {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#control.connected button.stop {
|
|
|
|
display: inline;
|
|
|
|
}
|