blob: 34764d1c64b5faceec04592f25a4d8635793f635 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<template>
<section class="oboz">
<h1>Obóz 2020</h1>
<p>W tym roku obóz odbędzie się nad jeziorem Sporym</p>
<div class="mapouter">
<div class="gmap_canvas">
<iframe
id="gmap_canvas"
src="https://maps.google.com/maps?q=Jezioro%20Spore&t=&z=13&ie=UTF8&iwloc=&output=embed"
frameborder="0"
scrolling="no"
marginheight="0"
marginwidth="0"
/>
</div>
</div>
</section>
</template>
<style scoped>
.oboz {
margin-top: 40px;
}
h1 {
font-size: 2em;
}
.mapouter,
.gmap_canvas,
#gmap_canvas {
width: 100%;
height: 50vh;
max-height: 300px;
}
</style>
|