Advertisement
Guest User

Untitled

a guest
May 5th, 2015
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. <link rel="import" href="../core-signals/core-signals.html">
  2. <link rel="import" href="../cx-user-window/cx-user-window.html">
  3. <link rel="import" href="../cx-user-matching-profiles/cx-profile-list.html">
  4. <link rel="import" href="../paper-button/paper-button.html">
  5. <link rel="import" href="../cx-user-name/global-user.html">
  6.  
  7. <polymer-element name="my-element">
  8.  
  9. <template>
  10. <style>
  11. :host {
  12. position: absolute;
  13. width: 100%;
  14. height: 100%;
  15. box-sizing: border-box;
  16. }
  17. #section {
  18. width: 420px;
  19. height: 420px;
  20. padding: 30px 10px 10px;
  21. border-radius: 5px;
  22. border: 2px solid rgb(145, 160, 178);
  23. margin: 10px 0px;
  24. left: 80px;
  25. top: 20px;
  26. position: absolute;
  27. }
  28. </style>
  29. <section id="section" layout>
  30. <cx-user-window id="cx_user_window" layout></cx-user-window>
  31. <cx-profile-list id="cx_profile_list" layout vertical></cx-profile-list>
  32. <global-user id="global_user" layout vertical></global-user>
  33. </section>
  34. </template>
  35.  
  36. <script>
  37.  
  38. Polymer({
  39.  
  40. });
  41.  
  42. </script>
  43.  
  44. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement