Created
July 3, 2014 10:04
-
-
Save mikomatic/29a6bcad18f68b6c27ee 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="../notification-elements/notification-alert.html"> | |
<link rel="import" href="../paper-tabs/paper-tab.html"> | |
<link rel="import" href="../paper-button/paper-button.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
#notification_alert { | |
left: 580px; | |
top: 360px; | |
position: absolute; | |
} | |
#paper_tab { | |
width: 120px; | |
height: 40px; | |
left: 570px; | |
top: 200px; | |
position: absolute; | |
} | |
#paper_button { | |
left: 530px; | |
top: 440px; | |
position: absolute; | |
} | |
</style> | |
<notification-alert message="Hi there!" icon="icon.png" name="notification" id="notification_alert"></notification-alert> | |
<paper-tab id="paper_tab">TAB</paper-tab> | |
<paper-button label="Paper Button" id="paper_button"></paper-button> | |
</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