Last active
August 29, 2015 14:06
-
-
Save vptech20nn/7cee72e22dac32574e6a to your computer and use it in GitHub Desktop.
designer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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; | |
} | |
#cool_clock2 { | |
width: 240px; | |
height: 230px; | |
left: 400px; | |
top: 30px; | |
position: absolute; | |
} | |
#google_map1 { | |
width: 260px; | |
height: 280px; | |
display: block; | |
left: 10px; | |
top: 30px; | |
position: absolute; | |
} | |
</style> | |
<google-map id="google_map1">My Map</google-map> | |
<cool-clock id="cool_clock2">My Try clock</cool-clock> | |
</template> | |
<script> | |
Polymer('my-element', { | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment