Skip to content

Instantly share code, notes, and snippets.

@mikomatic
Created July 3, 2014 10:04
Show Gist options
  • Save mikomatic/29a6bcad18f68b6c27ee to your computer and use it in GitHub Desktop.
Save mikomatic/29a6bcad18f68b6c27ee to your computer and use it in GitHub Desktop.
designer
<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