Skip to content

Instantly share code, notes, and snippets.

@pabo3000
Last active August 29, 2015 14:18
Show Gist options
  • Save pabo3000/17cd2013669b3f5bb1a0 to your computer and use it in GitHub Desktop.
Save pabo3000/17cd2013669b3f5bb1a0 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../cool-clock/cool-clock.html">
<link rel="import" href="../google-map/google-map.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
border: red;
opacity: 0.5;
top: 0px;
left: 0px;
}
#cool_clock {
width: 400px;
height: 300px;
left: 710px;
top: 140px;
position: absolute;
}
#cool_clock1 {
width: 400px;
height: 300px;
left: 1700px;
top: 560px;
position: absolute;
}
#google_map {
left: 160px;
top: 110px;
position: absolute;
}
#google_map1 {
width: 400px;
height: 400px;
display: block;
left: 810px;
top: 190px;
position: absolute;
}
</style>
<cool-clock id="cool_clock"></cool-clock>
<google-map latitude="37.62335040540145" longitude="-122.76686262695313" id="google_map" one flex></google-map>
<google-map latitude="37.9451539938582" longitude="-121.50480818359375" id="google_map1"></google-map>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment