From 7570248c3dcd8c2129d22521ee3bc2c68294ed38 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Wed, 27 Jul 2016 21:07:34 +0200 Subject: a little bit of 21st century design --- public/static/main.css | 67 ++++++++++++++++++++++++++++++++++++++++++++------ templates/main.html.ep | 23 ++++++++++------- 2 files changed, 74 insertions(+), 16 deletions(-) diff --git a/public/static/main.css b/public/static/main.css index 8ecda96..3b1fe65 100644 --- a/public/static/main.css +++ b/public/static/main.css @@ -40,18 +40,71 @@ div.field { margin-bottom: 0.6em; } -input, select { - width: 20em; +.container { + max-width: 40em; + margin-left: auto; + margin-right: auto; +} + +#display { + display: block; + margin-left: auto; + margin-right: auto; +} + +input, select, .button { + display: inline-block; + width: 50em; max-width: 100%; min-height: 1.8em; + border-radius: 4px; + color: #000; + background-color: #fff; + border: 1px solid #ccc; + box-shadow: inset 0 1px 1px rgba(0,0,0,.075); + font-size: 90%; + text-align: center; + vertical-align: middle; } -/* -input, select { - border: 1px solid black; - display: block; +input[type="text"], +input[type="number"] { + width: 49em; + padding-left: 0.5em; + padding-right: 0.5em; + text-align: left; + box-sizing: border-box; +} + +input[type="submit"], .button { + color: #fff; + background-color: #337ab7; + border-color: #2e6da4; + cursor: pointer; + box-shadow: none; + padding-top: 0.9ex; + padding-bottom: 0.9ex; +} + +.button { + padding-top: 1.1ex; + padding-bottom: 0; +} + +input[type="submit"]:active, +input[type="submit"]:focus, +input[type="submit"]:hover, +.button:active, +.button:focus, +.button:hover { + color: #fff; + background-color: #286090; + border-color: #204d74; +} + +input[type="submit"]:active { + box-shadow: inset 0 3px 5px rgba(0,0,0,.125); } -*/ div.notes { margin-top: 4em; diff --git a/templates/main.html.ep b/templates/main.html.ep index cb18d93..b6cccd2 100644 --- a/templates/main.html.ep +++ b/templates/main.html.ep @@ -12,12 +12,14 @@ % if ($stop) { % if ($errstr) { +
Received an error from the backend service:
 %= $errstr
 
+
% } % elsif ($frontend eq 'png') { <%= $stop %>.png?<%= $params %>" alt="" @@ -37,6 +39,7 @@ Preview:
height="<%= $height * 5 %>" width="<%= $width * 5 %>"> % } % elsif ($frontend eq 'json') { +

<%= $stop %>.json?<%= $params %>">JSON data for <%= $city %> <%= $stop %> @@ -76,10 +79,11 @@ documentation

NOTE: The JSON interface is not guaranteed to be stable. The data layout may change any time.

+
% } -% } # ($city and $stop) +% } # ($stop) % else { - +

VRR-Infoscreen shows the next departures at a public transit stop, just like the Lumino LED displays used in some places. It also supports an @@ -92,9 +96,9 @@ It works best for the VRR (Verkehrsverbund Rhein-Ruhr), but also supports many other german transit networks. All information is provided without any guarantee of correctness, completeness or anything else.

- +
% } - +
% if (my $error = stash 'error') { @@ -129,6 +133,11 @@ guarantee of correctness, completeness or anything else. % }
+
+ %= submit_button 'Display' +
+
+ optional:
Frontend
@@ -147,11 +156,6 @@ guarantee of correctness, completeness or anything else. %= select_field backend => [['EFA / VRR' => 'vrr'], ['DB (HAFAS)' => 'db'], ['ASEAG (URA)' => 'aseag'], @efa_backends, @hafas_backends]
-
- %= submit_button 'Display' -
-
- optional:
display height [lines]
@@ -208,6 +212,7 @@ v<%= $Travel::Status::DE::HAFAS::VERSION %>
Travel::Status::DE::EFA v<%= $Travel::Status::DE::EFA::VERSION %>
+ -- cgit v1.2.3