Advertisement
Guest User

Untitled

a guest
May 31st, 2016
55
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. border: 1px solid;
  13. }
  14. #paper_button {
  15. left: 250px;
  16. top: 60px;
  17. position: absolute;
  18. width: 290px;
  19. height: 160px;
  20. border: 1px solid rgb(0, 0, 0);
  21. }
  22. </style>
  23. <paper-button id="paper_button">нажимай скорее</paper-button>
  24. </template>
  25.  
  26. <script>
  27.  
  28. Polymer({
  29.  
  30. });
  31.  
  32. </script>
  33.  
  34. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement