From 33764e200639c022bba687af09ac0d618e022046 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 7 Sep 2017 13:47:45 -0300 Subject: [PATCH] Add gitignore: no backups and csv register file Makes map responsive --- .gitignore | 3 +++ mapa.php | 6 ++++-- style/style.css | 14 ++++++++++++++ 3 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c209eca --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +2021y22.csv +*.bak +bkp/* diff --git a/mapa.php b/mapa.php index 80cda02..f21cf02 100644 --- a/mapa.php +++ b/mapa.php @@ -4,8 +4,10 @@

Lugar del evento:

- +

@@ -25,4 +27,4 @@ - \ No newline at end of file + diff --git a/style/style.css b/style/style.css index ebc6949..900723d 100644 --- a/style/style.css +++ b/style/style.css @@ -393,3 +393,17 @@ table tr td { background: #E5E5DB; color: #47433F; border-top: 1px solid #FFF;} + +div.map-responsive{ + overflow:hidden; + padding-bottom:56.25%; + position:relative; + height:0; +} +div.map-responsive iframe{ + left:0; + top:0; + height:100%; + width:100%; + position:absolute; +}