2017-01-30 21:36:44 +01:00
|
|
|
/* μlogger
|
2013-06-19 13:27:14 +02:00
|
|
|
*
|
2017-01-30 21:36:44 +01:00
|
|
|
* Copyright(C) 2017 Bartek Fabiszewski (www.fabiszewski.net)
|
2013-06-19 13:27:14 +02:00
|
|
|
*
|
|
|
|
* This is free software; you can redistribute it and/or modify it under
|
|
|
|
* the terms of the GNU Library General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
html {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
background-color: #666;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
color: #bce;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
:link, :visited {
|
|
|
|
color: #bce;
|
|
|
|
}
|
|
|
|
select {
|
|
|
|
width: 150px;
|
|
|
|
/*font-size: 0.6em;*/
|
|
|
|
font-weight: normal;
|
|
|
|
padding-top: 0.2em;
|
|
|
|
}
|
2013-06-23 00:17:28 +02:00
|
|
|
#menu input,
|
|
|
|
#login input {
|
2013-06-19 13:27:14 +02:00
|
|
|
width: 150px;
|
|
|
|
text-align: center;
|
|
|
|
border: 1px solid black;
|
|
|
|
}
|
2013-06-23 00:17:28 +02:00
|
|
|
#menu input[type = "submit"],
|
|
|
|
#login input[type = "submit"] {
|
2013-06-19 13:27:14 +02:00
|
|
|
background-color: black;
|
|
|
|
color: white;
|
|
|
|
border: 1px solid white;
|
|
|
|
}
|
2013-06-23 00:17:28 +02:00
|
|
|
#menu input[type = "checkbox"] {
|
2013-06-19 13:27:14 +02:00
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
#main {
|
|
|
|
height: 100%;
|
|
|
|
margin-right: 165px;
|
|
|
|
}
|
|
|
|
#map-canvas {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
#menu {
|
|
|
|
font-family: Verdana, sans-serif;
|
|
|
|
font-size: 0.6em;
|
|
|
|
font-weight: bold;
|
|
|
|
color: white;
|
|
|
|
float: right;
|
|
|
|
width: 165px;
|
|
|
|
height: 100%;
|
|
|
|
background-color: #666;
|
2013-06-23 00:17:28 +02:00
|
|
|
overflow: hidden;
|
2013-06-19 13:27:14 +02:00
|
|
|
}
|
|
|
|
#menu-content {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
#footer {
|
|
|
|
position: fixed;
|
2013-06-26 19:58:55 +02:00
|
|
|
width: 165px;
|
2013-06-19 13:27:14 +02:00
|
|
|
bottom:0;
|
2016-10-29 14:05:13 +02:00
|
|
|
padding: 10px;
|
2013-06-26 19:58:55 +02:00
|
|
|
background-color:rgba(102, 102, 102, 0.9);
|
2013-06-19 13:27:14 +02:00
|
|
|
color: lightgray;
|
|
|
|
}
|
2013-06-26 19:58:55 +02:00
|
|
|
#menu-close {
|
|
|
|
background-color: #666;
|
|
|
|
opacity: 0.9;
|
|
|
|
position: absolute;
|
|
|
|
top: 55px;
|
|
|
|
right: 165px;
|
|
|
|
z-index: 1900;
|
|
|
|
width: 18px;
|
|
|
|
height: 20px;
|
|
|
|
line-height: 18px;
|
|
|
|
text-align: right;
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: bolder;
|
|
|
|
border-radius: 11px 0 0 11px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2017-01-30 21:36:44 +01:00
|
|
|
#user, #track, #summary, #export, #other, #units {
|
2013-06-19 13:27:14 +02:00
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
#login {
|
2016-10-29 14:05:13 +02:00
|
|
|
font-family: Verdana, sans-serif;
|
2013-06-19 13:27:14 +02:00
|
|
|
position: relative;
|
|
|
|
top: 10%;
|
|
|
|
background-color: #444;
|
|
|
|
width: 30%;
|
|
|
|
min-width: 200px;
|
|
|
|
margin: auto;
|
|
|
|
padding: 30px;
|
|
|
|
font-size: 0.8em;
|
|
|
|
text-align: center;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
#title {
|
|
|
|
font-size: 1.3em;
|
|
|
|
padding-bottom: 0.5em;
|
|
|
|
padding-top: 0.6em;
|
|
|
|
}
|
|
|
|
#subtitle {
|
|
|
|
padding-bottom: 2em;
|
|
|
|
}
|
|
|
|
#error {
|
|
|
|
padding-top: 1.2em;
|
|
|
|
color: yellow;
|
|
|
|
}
|
|
|
|
#popup {
|
2013-06-21 11:15:09 +02:00
|
|
|
width:370px;
|
2013-07-25 23:34:13 +02:00
|
|
|
min-height:130px;
|
2013-06-21 11:15:09 +02:00
|
|
|
}
|
|
|
|
#popup * {
|
|
|
|
font-family: Roboto, Verdana, sans-serif;
|
|
|
|
font-size: 12px;
|
2013-06-19 13:27:14 +02:00
|
|
|
}
|
|
|
|
#pheader {
|
|
|
|
font-weight: bolder;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
border-bottom: 1px solid gray;
|
|
|
|
}
|
2013-07-25 23:34:13 +02:00
|
|
|
#pcomments {
|
2016-10-29 14:05:13 +02:00
|
|
|
clear: both;
|
2013-07-25 23:34:13 +02:00
|
|
|
color: #903;
|
|
|
|
}
|
2013-06-19 13:27:14 +02:00
|
|
|
#pleft,#pright {
|
|
|
|
float:left;
|
|
|
|
padding-top: 5px;
|
|
|
|
}
|
|
|
|
#pleft {
|
|
|
|
padding-right: 20px;
|
|
|
|
}
|
|
|
|
#pfooter {
|
|
|
|
clear: both;
|
|
|
|
font-size: smaller;
|
|
|
|
padding-top: 20px;
|
|
|
|
}
|
|
|
|
#bottom {
|
|
|
|
display: none;
|
2013-06-21 11:15:09 +02:00
|
|
|
position: absolute;
|
|
|
|
z-index: 10000;
|
2013-06-19 13:27:14 +02:00
|
|
|
}
|
2016-10-29 14:05:13 +02:00
|
|
|
#chart {
|
|
|
|
position: fixed;
|
2013-06-19 13:27:14 +02:00
|
|
|
bottom: 0; left:0; right: 0;
|
|
|
|
height: 200px;
|
|
|
|
margin-right: 165px;
|
|
|
|
background-color: white;
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
#close {
|
2013-06-21 11:15:09 +02:00
|
|
|
position: fixed;
|
2013-06-19 13:27:14 +02:00
|
|
|
bottom: 175px;
|
|
|
|
right: 175px;
|
2013-06-21 11:15:09 +02:00
|
|
|
z-index: 10001;
|
2013-06-19 13:27:14 +02:00
|
|
|
font-family: Verdana, sans-serif;
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#close a, #close:link, #close:visited {
|
|
|
|
color: #5070af;
|
|
|
|
}
|
2017-01-30 21:36:44 +01:00
|
|
|
|
|
|
|
.mi {
|
|
|
|
color:white;
|
|
|
|
padding-right:0.1em;
|
|
|
|
font-style:italic;
|
|
|
|
}
|
2017-02-17 16:41:39 +01:00
|
|
|
|
|
|
|
#modal {
|
|
|
|
display: block;
|
|
|
|
position: fixed;
|
|
|
|
z-index: 10010;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
overflow: auto;
|
|
|
|
background-color: black; /* fallback */
|
|
|
|
background-color: rgba(0,0,0,0.4);
|
|
|
|
padding-top: 10%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#modal-header {
|
2017-04-06 19:14:58 +02:00
|
|
|
top: 15px;
|
2017-02-17 16:41:39 +01:00
|
|
|
position: relative;
|
|
|
|
text-align: right;
|
|
|
|
margin: 0 auto;
|
|
|
|
width: 40%;
|
|
|
|
min-width: 300px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#modal-body {
|
|
|
|
font-size: 0.9em;
|
|
|
|
font-family: Verdana, sans-serif;
|
|
|
|
color: white;
|
2017-04-06 19:14:58 +02:00
|
|
|
background-color: rgba(102, 102, 102, 0.9);
|
2017-02-17 16:41:39 +01:00
|
|
|
margin: 0 auto 15% auto;
|
|
|
|
border: 1px solid #888;
|
|
|
|
width: 40%;
|
|
|
|
min-width: 300px;
|
2017-04-06 19:14:58 +02:00
|
|
|
padding: 1em;
|
|
|
|
border-radius: 10px;
|
|
|
|
-moz-border-radius: 10px;
|
|
|
|
-webkit-border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#modal-body .buttons {
|
|
|
|
padding-top: 1em;
|
2017-02-17 16:41:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#modal input[type=text], #modal input[type=password] {
|
|
|
|
width: 100%;
|
|
|
|
padding: 0.4em;
|
|
|
|
margin: 0.8em 0;
|
|
|
|
display: inline-block;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
box-sizing: border-box;
|
2017-04-06 19:14:58 +02:00
|
|
|
border-radius: 5px;
|
|
|
|
-moz-border-radius: 5px;
|
|
|
|
-webkit-border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
2017-04-06 23:23:25 +02:00
|
|
|
button {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
background-color: gray;
|
|
|
|
padding: 1em;
|
|
|
|
width: 130px;
|
|
|
|
border: 1px solid #888;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown a {
|
|
|
|
display: block;
|
|
|
|
padding-bottom: .5em;
|
|
|
|
padding-top: .5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.show { display: block; }
|