pull/32/merge
Mart-Erki Nõumees 7 years ago committed by GitHub
commit c316b8cf8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 31
      _sass/contact.scss
  2. 37
      contact.html

@ -52,11 +52,38 @@
} }
} }
#main-wrapper {
width : 100%;
margin-top : 40px;
display : flex;
flex-direction : row;
flex-wrap : wrap;
}
#maparea {
margin : 0 20px 0px auto;
min-width : 50%;
flex : 1;
#map {
width : 100%;
margin : 0px auto;
height : 60vh;
max-height : 300px;
}
}
#main { #main {
margin : 2rem 0; margin : 2rem 0;
padding-right : 40px;
p{
padding-bottom : 5px;
}
} }
* { * {
margin : 0.2rem 0; margin : 0.2rem 0;
} }
} }

@ -17,15 +17,21 @@ title: Kontakt - Lapikud
</div> </div>
</div> </div>
<div id="main"> <div id="main-wrapper">
<h2>MTÜ Lapikud</h2> <div id="main">
<p>Aadress: Akadeemia tee 5, Tallinn, Eesti</p> <h2>MTÜ Lapikud</h2>
<p>E-post: <a href="mailto:lapikud@lapikud.ee">lapikud@lapikud.ee</a></p> <p>Aadress: Akadeemia tee 5, Tallinn, Eesti</p>
<p>Telefon: <a href="tel:+372 58 160 799">+372 58 160 799</a></p> <p>E-post: <a href="mailto:lapikud@lapikud.ee">lapikud@lapikud.ee</a></p>
<p>Reg. kood: 801 67 145</p> <p>Telefon: <a href="tel:+372 58 160 799">+372 58 160 799</a></p>
<p>Swedbank EE812200221019551756</p> <p>Reg. kood: 801 67 145</p>
<p>Swedbank EE812200221019551756</p>
</div>
<div id="maparea">
<div id="map"></div>
</div>
</div> </div>
<div id="management"> <div id="management">
<h2>Juhatus</h2> <h2>Juhatus</h2>
<div id="container"> <div id="container">
@ -44,3 +50,20 @@ title: Kontakt - Lapikud
</div> </div>
</div> </div>
</div> </div>
<!-- leafletjs map styles -->
<script src="https://unpkg.com/leaflet@1.3.3/dist/leaflet.js"
integrity="sha512-tAGcCfR4Sc5ZP5ZoVz0quoZDYX5aCtEm/eu1KhSLj2c9eFrylXZknQYmxUssFaVJKvvc0dJQixhGjG2yXWiV9Q=="
crossorigin=""></script>
<script>
var map = L.map('map').setView([59.396342, 24.668718], 16);
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);
L.marker([59.396342, 24.668718]).addTo(map)
.openPopup();
</script>

Loading…
Cancel
Save