diff options
| author | Ben Burwell <ben.burwell@trifecta.com> | 2017-01-22 19:32:08 -0500 |
|---|---|---|
| committer | Ben Burwell <ben.burwell@trifecta.com> | 2017-01-22 19:32:08 -0500 |
| commit | 4773ebe1ed2269309c15229ac11d9a9a586b580d (patch) | |
| tree | b56bef6d5f9ff8c29542628c59cd671ce7d1a765 | |
| parent | 349645a1fe30fa0565c7d23cf70ed4666f125b48 (diff) | |
fix map
| -rw-r--r-- | map/index.html | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/map/index.html b/map/index.html index 66972ff..92d13d7 100644 --- a/map/index.html +++ b/map/index.html @@ -2,10 +2,20 @@ <html> <head> <title>map</title> + <style type="text/css"> + html, body { + width: 100%; + height: 100%; + padding: 0; + margin: 0; + } + + iframe { + border: none; + } + </style> </head> <body> - <iframe - src="https://www.google.com/maps/d/u/0/embed?mid=1smrmLfe5lFfDy8hwBbTDaPBn8Iw" - width="100%" height="100%"></iframe> + <iframe src="https://www.google.com/maps/d/u/0/embed?mid=1smrmLfe5lFfDy8hwBbTDaPBn8Iw"></iframe> </body> </html> |
