2010-05-27 15:08:25 +00:00
|
|
|
/* Basic font-size and family. */
|
|
|
|
html {
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 0; padding: 0;
|
|
|
|
}
|
|
|
|
|
2010-05-31 07:27:09 +00:00
|
|
|
a:link { text-decoration: underline; color: #333 }
|
|
|
|
a:active { text-decoration: underline; color: #333; }
|
|
|
|
a:hover { text-decoration: underline; color: #333; }
|
|
|
|
a:visited { text-decoration: underline; color: #333; }
|
|
|
|
|
2010-05-27 15:08:25 +00:00
|
|
|
/* The whoppping map in the centre */
|
|
|
|
#map_canvas { width: 100%; height: 100%; }
|
|
|
|
|
2010-05-30 20:42:17 +00:00
|
|
|
#status_message{
|
|
|
|
position: absolute;
|
|
|
|
left: 50%;
|
|
|
|
top: 50%;
|
|
|
|
width: 400px;
|
|
|
|
height: 100px;
|
|
|
|
margin-left: -200px;
|
|
|
|
margin-top: -50px;
|
|
|
|
padding: 1em;
|
|
|
|
text-align: center;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2010-05-27 15:08:25 +00:00
|
|
|
.box {
|
|
|
|
position: absolute;
|
|
|
|
background-color: white;
|
|
|
|
border: 1px solid #6666ff;
|
|
|
|
padding: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.box {
|
|
|
|
background: rgba(255,255,255,0.75); /* for more modern browsers */
|
|
|
|
}
|
|
|
|
|
|
|
|
.box * {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.box table {
|
|
|
|
margin: 0.25em auto;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.box h1 {
|
|
|
|
text-align: center;
|
|
|
|
margin: 0em 0em 0.5em 0em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.box p {
|
|
|
|
margin: 0 auto;
|
|
|
|
margin-bottom: 0.25em;
|
|
|
|
width: 25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#trail_table {
|
|
|
|
right: 0; bottom: 0;
|
|
|
|
border-right: none;
|
|
|
|
border-bottom: none;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#scenario_template {
|
2010-05-30 22:20:26 +00:00
|
|
|
width: 400px;
|
2010-05-27 15:08:25 +00:00
|
|
|
left: 0; bottom: 0;
|
|
|
|
border-left: none;
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
2010-05-27 20:04:57 +00:00
|
|
|
#input_form {
|
|
|
|
right: 0; bottom: 0;
|
|
|
|
border-right: none;
|
|
|
|
border-bottom: none;
|
|
|
|
width: 400px;
|
|
|
|
height:350px;
|
|
|
|
}
|
|
|
|
|
2010-05-27 15:08:25 +00:00
|
|
|
td.right-td {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
td.spacer {
|
|
|
|
width: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
table#trails {
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
|
|
|
|
table#trails td, table#trails th {
|
|
|
|
border: 1px solid #6666ff;
|
|
|
|
padding: 0.1em 0.5em;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
table#trails th {
|
|
|
|
background-color: #6666ff;
|
|
|
|
color: white;
|
|
|
|
}
|