realtimetraffic/client/static/css/base.css

58 lines
1.3 KiB
CSS

/*
* Copyright (C) 2018 Simon Eisenmann
* Copyright (C) 2014-2017 struktur AG
*
* 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.
*/
html, body, ul, ol, li, form, fieldset, legend {
margin: 0;
padding: 0;
}
body {
font-family: Arial, Helvetica, sans-serif;
background: white;
}
#main {
margin: 0 auto;
width: 700px;
}
input {
padding: 4px;
border: solid 1px #E5E5E5;
outline: 0;
background: #FFFFFF;
margin-right: 9px;
}
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;
}