Skip to content

Instantly share code, notes, and snippets.

@iamlothian
Created January 20, 2015 02:58
Show Gist options
  • Save iamlothian/085f5d4adf3674398218 to your computer and use it in GitHub Desktop.
Save iamlothian/085f5d4adf3674398218 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../google-map/google-map.html">
<link rel="import" href="../cool-clock/cool-clock.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#google_map {
width: 400px;
height: 400px;
display: block;
left: 150px;
top: 70px;
position: absolute;
}
#cool_clock {
width: 400px;
height: 300px;
left: 570px;
top: 100px;
position: absolute;
}
</style>
<google-map latitude="37.703253552612" longitude="-122.29033064453125" id="google_map"></google-map>
<cool-clock id="cool_clock"></cool-clock>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment