Advertisement
Guest User

Untitled

a guest
Apr 21st, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <link rel="import" href="../topeka-elements/topeka-resources.html">
  2. <link rel="import" href="../topeka-elements/topeka-profile.html">
  3.  
  4. <polymer-element name="my-element">
  5.  
  6. <template>
  7. <style>
  8. :host {
  9. position: relative;
  10. width: 100%;
  11. height: 100%;
  12. box-sizing: border-box;
  13. }
  14. #topeka_profile {
  15. width: 400px;
  16. height: 600px;
  17. left: 640px;
  18. top: 100px;
  19. position: absolute;
  20. }
  21. </style>
  22. <topeka-profile id="topeka_profile" center layout vertical center-justified></topeka-profile>
  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