Skip to content
Snippets Groups Projects
Commit 220b87d4 authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

CSS improvements, embed defaults

parent 02f3c8fb
No related branches found
No related tags found
1 merge request!1Implemented Embed-code generator interface
......@@ -4,7 +4,7 @@ body {
padding: 0;
}
.combined:not(:first-child) {
border-left: 2px solid #ccc;
border-left: 2px solid #666;
}
.combined.map,
.combined.predictions {
......
......@@ -5,7 +5,7 @@ html, body {
border: 0;
margin: 0;
padding: 0;
font-family: sans-serif;
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
font-size: 14px;
}
input,
......
body {
margin: 0;
padding: .4em;
background-color: #444;
}
.predictions {
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
background-color: #222;
color: #fff;
font-family: sans-serif;
padding: .4em;
}
.predictions header {
text-align: center;
font-weight: bold;
text-align: center;
font-size: 1.2em;
}
.predictions p {
margin: .5em 0;
}
.predictions .prediction.lt1min {
color: #f00;
......
......@@ -13,7 +13,7 @@
<link href="static/css/combined.css" rel="stylesheet" />
{% endblock %}
{% block body %}
<div class="combined map" id="c-map">
<div class="combined map{% if embed %} embed{% endif %}" id="c-map">
</div>
<div class="combined predictions" id="c-predictions">
</div>
......
......@@ -11,7 +11,7 @@
<link href="static/css/map.css" rel="stylesheet" />
{% endblock %}
{% block body %}
<div class="map" id="map"></div>
<div class="map{% if embed %} embed{% endif %}" id="map"></div>
{# TODO: Generate these using JS, not here. #}
<div id="msg">
<span id="msg-zoomForVehicles">Zoom in to see vehicles.</span>
......
......@@ -21,7 +21,7 @@
<select id="embed-mode">
<option value="m">Map</option>
<option value="p">Predictions</option>
<option value="c">Combined</option>
<option selected value="c">Combined</option>
</select>
</label>
</p>
......@@ -44,7 +44,7 @@
<legend>Size</legend>
<label for="embed-width">
<span>Width:</span>
<input id="embed-width" type="number" min=200 step=50 value=400> px
<input id="embed-width" type="number" min=200 step=50 value=500> px
</label>
<br>
<label for="embed-height">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment