Skip to content

Instantly share code, notes, and snippets.

@dmisdm
Last active October 25, 2015 06:06
Show Gist options
  • Save dmisdm/d18f5359bf31770b8c16 to your computer and use it in GitHub Desktop.
Save dmisdm/d18f5359bf31770b8c16 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../notification-elements/notification-alert.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../paper-item/paper-item.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
top: 0px;
left: 0px;
background-color: rgb(0, 128, 255);
}
#notification_alert {
left: 1340px;
top: 560px;
position: absolute;
}
#paper_item {
left: 710px;
top: 240px;
position: absolute;
}
</style>
<paper-item id="paper_item" icon="settings" label="Item"></paper-item>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment