Advertisement
Guest User

Untitled

a guest
Jan 30th, 2015
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <link rel="import" href="../paper-button/paper-button.html">
  2. <link rel="import" href="../paper-calculator/paper-calculator.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_button {
  15. left: 440px;
  16. top: 280px;
  17. position: absolute;
  18. }
  19. #paper_calculator {
  20. width: 400px;
  21. height: 560px;
  22. left: 300px;
  23. top: 70px;
  24. position: absolute;
  25. }
  26. </style>
  27. <paper-button id="paper_button">button</paper-button>
  28. <paper-calculator responsivewidth="2000px" id="paper_calculator"></paper-calculator>
  29. </template>
  30.  
  31. <script>
  32.  
  33. Polymer({
  34.  
  35. });
  36.  
  37. </script>
  38.  
  39. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement