Advertisement
Guest User

Untitled

a guest
Apr 25th, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. <link rel="import" href="../paper-button/paper-button.html">
  2. <link rel="import" href="../cx-form/global-inputs.html">
  3. <link rel="import" href="../core-signals/core-signals.html">
  4. <link rel="import" href="../cx-profile-list/cx-profile-list.html">
  5. <link rel="import" href="../cx-transactions-list/cx-transactions-list.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. border: 2px solid rgb(204, 204, 204);
  20. box-sizing: border-box;
  21. padding: 20px 10px;
  22. left: 70px;
  23. top: 90px;
  24. position: absolute;
  25. }
  26. #section1 {
  27. min-height: 20px;
  28. height: auto;
  29. }
  30. #section2 {
  31. margin: 10px 0px;
  32. }
  33. #section3 {
  34. width: 420px;
  35. border: 2px solid rgb(204, 204, 204);
  36. box-sizing: border-box;
  37. padding: 20px 10px;
  38. left: 500px;
  39. top: 90px;
  40. position: absolute;
  41. }
  42. #section4 {
  43. width: 420px;
  44. border: 2px solid rgb(204, 204, 204);
  45. box-sizing: border-box;
  46. padding: 20px 10px;
  47. left: 500px;
  48. top: 260px;
  49. position: absolute;
  50. }
  51. </style>
  52. <section id="section" layout vertical>
  53. <global-inputs id="global_inputs" layout vertical></global-inputs>
  54. <section id="section1" layout relative vertical></section>
  55. <section id="section2" layout horizontal>
  56. <paper-button id="paper_button">Delete Profile</paper-button>
  57. <paper-button id="paper_button1">Save Profile</paper-button>
  58. </section>
  59. </section>
  60. <section id="section3" layout vertical>
  61. <cx-profile-list id="cx_profile_list" layout vertical></cx-profile-list>
  62. </section>
  63. <section id="section4" layout vertical>
  64. <cx-transactions-list id="cx_transactions_list" layout vertical></cx-transactions-list>
  65. </section>
  66. </template>
  67.  
  68. <script>
  69.  
  70. Polymer({
  71.  
  72. });
  73.  
  74. </script>
  75.  
  76. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement