Advertisement
Guest User

Untitled

a guest
May 26th, 2015
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. <link rel="import" href="../paper-input/paper-input.html">
  2. <link rel="import" href="../core-icons/core-icons.html">
  3. <link rel="import" href="../core-icon/core-icon.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. border-collapse: collapse;
  15. background-color: rgb(255, 255, 255);
  16. }
  17. #core_card {
  18. position: absolute;
  19. width: 830px;
  20. height: 860px;
  21. border-radius: 2px;
  22. box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
  23. left: 110px;
  24. top: 30px;
  25. background-color: rgb(255, 255, 255);
  26. }
  27. #section {
  28. width: 100%;
  29. height: 25%;
  30. border-bottom-width: 1px;
  31. border-bottom-style: solid;
  32. border-bottom-color: rgb(230, 231, 233);
  33. background-color: rgb(255, 255, 255);
  34. }
  35. #section1 {
  36. width: 10%;
  37. height: 25%;
  38. left: 0px;
  39. top: 0px;
  40. position: absolute;
  41. background-color: rgb(238, 152, 132);
  42. }
  43. #section2 {
  44. left: 80px;
  45. top: 0px;
  46. position: absolute;
  47. width: 30%;
  48. height: 25%;
  49. background-color: rgb(245, 248, 250);
  50. }
  51. #section3 {
  52. left: 320px;
  53. top: 0px;
  54. position: absolute;
  55. width: 510px;
  56. height: 25%;
  57. background-color: rgb(255, 255, 255);
  58. }
  59. #section4 {
  60. border-bottom-width: 1px;
  61. border-bottom-style: solid;
  62. border-bottom-color: rgb(230, 231, 233);
  63. left: 30px;
  64. top: 10px;
  65. position: absolute;
  66. width: 180px;
  67. height: 50px;
  68. background-color: rgb(245, 248, 250);
  69. }
  70. #core_field {
  71. left: 1710px;
  72. top: 830px;
  73. }
  74. #paper_input {
  75. left: 1140px;
  76. top: 700px;
  77. position: absolute;
  78. }
  79. #paper_button {
  80. left: 1620px;
  81. top: 770px;
  82. }
  83. div {
  84. text-align: center;
  85. }
  86. </style>
  87. <paper-input label="Type something..." value="hgjsfhjghshr" committedvalue="hgjsfhjghshr" id="paper_input"></paper-input>
  88. <core-card id="core_card" layout vertical>
  89. <section id="section">
  90. <section id="section1" vertical layout start-justified start></section>
  91. <section id="section3"></section>
  92. <section id="section2">
  93. <section id="section4" horizontal layout start-justified>
  94. <div id="div" flex self-end>Overview</div>
  95. <core-icon icon="search" id="core_icon"></core-icon>
  96. </section>
  97. </section>
  98. </section>
  99. </core-card>
  100. </template>
  101.  
  102. <script>
  103.  
  104. Polymer({
  105.  
  106. });
  107.  
  108. </script>
  109.  
  110. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement