Skip to content

Instantly share code, notes, and snippets.

@cesarvega
Created October 15, 2014 18:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cesarvega/3ba02a919a632f1cf93a to your computer and use it in GitHub Desktop.
Save cesarvega/3ba02a919a632f1cf93a to your computer and use it in GitHub Desktop.
designer
<link href="../notification-elements/notification-alert.html" rel="import">
<link href="../google-map/google-map.html" rel="import">
<polymer-element name="my-element">
<template>
<style>
#design_host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#notification_alert {
left: 210px;
top: 60px;
position: absolute;
}
#google_map {
width: 400px;
height: 400px;
display: block;
left: 930px;
top: 30px;
position: absolute;
}
</style>
<notification-alert message="Hi there!" icon="icon.png" name="notification" id="notification_alert"></notification-alert>
<google-map latitude="0" longitude="-180" id="google_map"></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