diff --git a/views/juego.php b/views/juego.php
index 6cf3b28..3f7269f 100644
--- a/views/juego.php
+++ b/views/juego.php
@@ -288,8 +288,8 @@
while ($pregunta = mysqli_fetch_array($query)) {
$aux += 1;
echo '
';
-
- echo '' . $aux . ' - ' . $pregunta['pregunta'] . "
";
+
+ echo '' . ($aux == 1? '': ($aux-1)) . ' - ' . $pregunta['pregunta'] . "
";
echo "
";
}
@@ -302,12 +302,13 @@
Visita la siguiente latitud y longitud en Google Maps:
-
+
+
diff --git a/views/mapa.php b/views/mapa.php
index 3c61dcf..d4f0c58 100644
--- a/views/mapa.php
+++ b/views/mapa.php
@@ -2,7 +2,7 @@
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
- height: 250px;
+ height: 400px;
}
/* Optional: Makes the sample page fill the window. */
@@ -53,11 +53,10 @@
}
#pac-input {
- background-color: #fff;
font-family: Roboto;
font-size: 15px;
font-weight: 300;
- /* margin-left: -200px; */
+ /* margin-left: -200px; */
margin-top: 10px;
padding: 0 11px 0 13px;
text-overflow: ellipsis;
@@ -79,13 +78,35 @@
#target {
width: 345px;
}
+
+ #input_container {
+ position: relative;
+ padding: 0 0 0 20px;
+ margin: 20 0px;
+ width: 400px;
+ }
+
+ #input_img {
+ position: absolute;
+ bottom: 2px;
+ right: 5px;
+ width: 36px;
+ height: 36px;
+ }