Advertisement
Guest User

Untitled

a guest
Jan 30th, 2015
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <link rel="import" href="../paper-button/paper-button.html">
  2.  
  3. <polymer-element name="my-element">
  4.  
  5. <template>
  6. <style>
  7. :host {
  8. position: absolute;
  9. width: 100%;
  10. height: 100%;
  11. box-sizing: border-box;
  12. }
  13. #paper_button {
  14. left: 80px;
  15. top: 40px;
  16. position: absolute;
  17. width: 160px;
  18. height: 40px;
  19. background-color: rgb(64, 128, 128);
  20. }
  21. </style>
  22. <paper-button id="paper_button" horizontal layout center-justified>Polymer Details</paper-button>
  23. </template>
  24.  
  25. <script>
  26.  
  27. Polymer({
  28.  
  29. });
  30.  
  31. </script>
  32.  
  33. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement