Advertisement
Guest User

Untitled

a guest
May 24th, 2015
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. <link rel="import" href="../paper-toast/paper-toast.html">
  2. <link rel="import" href="../topeka-elements/topeka-resources.html">
  3. <link rel="import" href="../topeka-elements/topeka-leaderboard.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_toast {
  16. left: 140px;
  17. top: 160px;
  18. position: absolute;
  19. }
  20. #topeka_leaderboard {
  21. width: 300px;
  22. height: 300px;
  23. left: 580px;
  24. top: 380px;
  25. position: absolute;
  26. }
  27. </style>
  28. <paper-toast text="Toast!" id="paper_toast" class="core-transition core-transition-bottom" touch-action="none"></paper-toast>
  29. <topeka-leaderboard disabled id="topeka_leaderboard" vertical layout></topeka-leaderboard>
  30. </template>
  31.  
  32. <script>
  33.  
  34. Polymer({
  35.  
  36. });
  37.  
  38. </script>
  39.  
  40. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement