Advertisement
Guest User

Untitled

a guest
May 30th, 2015
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <link rel="import" href="../core-icons/core-icons.html">
  2. <link rel="import" href="../paper-item/paper-item.html">
  3.  
  4. <polymer-element name="my-element">
  5.  
  6. <template>
  7. <style>
  8. :host {
  9. position: absolute;
  10. width: 100%;
  11. height: 100%;
  12. box-sizing: border-box;
  13. }
  14. #paper_item {
  15. left: 510px;
  16. top: 270px;
  17. position: absolute;
  18. }
  19. </style>
  20. <paper-item id="paper_item" icon="settings" label="Item"></paper-item>
  21. </template>
  22.  
  23. <script>
  24.  
  25. Polymer({
  26.  
  27. });
  28.  
  29. </script>
  30.  
  31. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement