Last active
October 25, 2015 06:06
-
-
Save dmisdm/d18f5359bf31770b8c16 to your computer and use it in GitHub Desktop.
designer
This file contains 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="../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