Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. <link rel="import" href="../smoothie-chart/smoothie-chart.html">
  2. <link rel="import" href="../topeka-elements/topeka-resources.html">
  3. <link rel="import" href="../topeka-elements/topeka-profile.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. top: 0px;
  15. left: 0px;
  16. }
  17. #smoothie_chart {
  18. left: 40px;
  19. top: 70px;
  20. width: 4000px;
  21. position: absolute;
  22. }
  23. #section {
  24. width: 420px;
  25. height: 630px;
  26. border: 5px solid rgb(204, 204, 204);
  27. left: 40px;
  28. top: 20px;
  29. position: absolute;
  30. }
  31. #paper_tabs {
  32. color: rgb(255, 255, 255);
  33. box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px;
  34. background-color: rgb(0, 188, 212);
  35. }
  36. #section2 {
  37. left: 240px;
  38. top: 80px;
  39. position: absolute;
  40. }
  41. #section3 {
  42. left: 50px;
  43. top: 0px;
  44. position: absolute;
  45. }
  46. #section4 {
  47. left: 750px;
  48. top: 410px;
  49. position: absolute;
  50. }
  51. #core_ajax {
  52. left: 1020px;
  53. top: 1200px;
  54. position: absolute;
  55. }
  56. #core_ajax1 {
  57. left: 1520px;
  58. top: 1200px;
  59. position: absolute;
  60. }
  61. #core_card {
  62. position: absolute;
  63. width: 100%;
  64. height: 100%;
  65. border-radius: 2px;
  66. box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
  67. left: 0px;
  68. top: 0px;
  69. background-color: rgb(255, 255, 255);
  70. }
  71. #paper_ripple {
  72. width: 100%;
  73. height: 100%;
  74. position: absolute;
  75. top: 0px;
  76. left: 0px;
  77. }
  78. #topeka_app {
  79. width: 600px;
  80. height: 300px;
  81. min-height: 450px;
  82. left: 580px;
  83. top: 30px;
  84. position: absolute;
  85. }
  86. #topeka_profile {
  87. width: 600px;
  88. height: 300px;
  89. left: 350px;
  90. top: 410px;
  91. position: absolute;
  92. }
  93. </style>
  94. <smoothie-chart id="smoothie_chart"></smoothie-chart>
  95. <section id="section2" layout horizontal center center-justified>
  96. </section>
  97. <section id="section4">
  98. <section id="section3">
  99. </section>
  100. </section>
  101. <topeka-profile id="topeka_profile" center layout vertical></topeka-profile>
  102. </template>
  103.  
  104. <script>
  105.  
  106. Polymer({
  107.  
  108. });
  109.  
  110. </script>
  111.  
  112. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement