Small changes to UI. Also add warning about state of the project.
This commit is contained in:
parent
361d113c9a
commit
af29d6321f
|
@ -7,6 +7,11 @@
|
|||
<title>these-3-words Map</title>
|
||||
<!-- Style -->
|
||||
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
|
||||
<style>
|
||||
body {
|
||||
padding-top: 40px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
|
@ -18,6 +23,7 @@
|
|||
<p class="lead">
|
||||
Find a location anywhere in the world identified by three simple words.
|
||||
</p>
|
||||
<p class="text-warning">This is a very early pre-alpha release. Don't expect anything to work properly or reproducible. Especially since the underlying word-list will most likely change soon.</p>
|
||||
<p id="input3wordsContainer">
|
||||
<input type="text" class="form-control" id="input3words" placeholder="zeljka-worry-suhai">
|
||||
</p>
|
||||
|
|
|
@ -1,11 +1,18 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Meta -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>these-3-words Map</title>
|
||||
<!-- Style -->
|
||||
<style type="text/css">
|
||||
html, body, #map-canvas { height: 100%; margin: 0; padding: 0;}
|
||||
</style>
|
||||
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js">
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="map-canvas"></div>
|
||||
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js"></script>
|
||||
<script type="text/javascript">
|
||||
function initialize() {
|
||||
var mapOptions = {
|
||||
|
@ -17,8 +24,5 @@
|
|||
}
|
||||
google.maps.event.addDomListener(window, 'load', initialize);
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="map-canvas"></div>
|
||||
</body>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in New Issue