Advertisement
Guest User

Untitled

a guest
May 5th, 2015
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. <link rel="import" href="../core-signals/core-signals.html">
  2. <link rel="import" href="../cx-user-fieldset/cx-user-fieldset.html">
  3. <link rel="import" href="../paper-button/paper-button.html">
  4. <link rel="import" href="../cx-user-name/global-user.html">
  5. <link rel="import" href="../cx-user-matching-profiles/cx-profile-list.html">
  6. <link rel="import" href="../cx-user-documents/cx-user-documents.html">
  7.  
  8. <polymer-element name="my-element">
  9.  
  10. <template>
  11. <style>
  12. :host {
  13. position: absolute;
  14. width: 100%;
  15. height: 100%;
  16. box-sizing: border-box;
  17. }
  18. #section {
  19. width: 420px;
  20. height: 420px;
  21. padding: 10px;
  22. border-radius: 5px;
  23. border: 2px solid rgb(145, 160, 178);
  24. margin: 10px 0px;
  25. left: 130px;
  26. top: 40px;
  27. position: absolute;
  28. }
  29. #section1 {
  30. width: 420px;
  31. height: 420px;
  32. padding: 10px;
  33. border-radius: 5px;
  34. border: 2px solid rgb(145, 160, 178);
  35. margin: 10px 0px;
  36. left: 640px;
  37. top: 50px;
  38. position: absolute;
  39. }
  40. #cx_user_documents {
  41. left: 120px;
  42. top: 570px;
  43. position: absolute;
  44. }
  45. </style>
  46. <section id="section" layout>
  47. <cx-user-fieldset id="cx_user_fieldset" layout></cx-user-fieldset>
  48. <global-user id="global_user" layout vertical></global-user>
  49. </section>
  50. <section id="section1" layout>
  51. <cx-user-fieldset id="cx_user_fieldset1" layout></cx-user-fieldset>
  52. <cx-profile-list id="cx_profile_list" layout vertical></cx-profile-list>
  53. </section>
  54. <cx-user-documents id="cx_user_documents" layout vertical></cx-user-documents>
  55. </template>
  56.  
  57. <script>
  58.  
  59. Polymer({
  60.  
  61. });
  62.  
  63. </script>
  64.  
  65. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement