Advertisement
Guest User

Untitled

a guest
Aug 30th, 2015
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <link rel="import" href="../core-icons/core-icons.html">
  2. <link rel="import" href="../core-icons/av-icons.html">
  3. <link rel="import" href="../paper-fab/paper-fab.html">
  4.  
  5. <polymer-element name="my-element">
  6.  
  7. <template>
  8. <style>
  9. :host {
  10. position: absolute;
  11. width: 100%;
  12. height: 100%;
  13. box-sizing: border-box;
  14. }
  15. #paper_fab {
  16. left: 1180px;
  17. top: 350px;
  18. }
  19. #div {
  20. left: 20px;
  21. top: 20px;
  22. position: absolute;
  23. }
  24. </style>
  25. <div id="div" layout horizontal>
  26. <paper-fab icon="check" id="paper_fab"></paper-fab>
  27. </div>
  28. </template>
  29.  
  30. <script>
  31.  
  32. Polymer({
  33.  
  34. });
  35.  
  36. </script>
  37.  
  38. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement