Advertisement
Guest User

Untitled

a guest
May 24th, 2015
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.60 KB | None | 0 0
  1. <link rel="import" href="../core-drawer-panel/core-drawer-panel.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. }
  15. #section3 {
  16. height: 100%;
  17. box-sizing: border-box;
  18. left: 460px;
  19. top: 100px;
  20. position: absolute;
  21. background-color: rgb(221, 221, 221);
  22. }
  23. #core_drawer_panel1 {
  24. position: absolute;
  25. top: 340px;
  26. right: 0px;
  27. bottom: 0px;
  28. left: 830px;
  29. }
  30. #section4 {
  31. box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
  32. background-color: rgb(250, 250, 250);
  33. }
  34. #section5 {
  35. height: 100%;
  36. box-sizing: border-box;
  37. background-color: rgb(221, 221, 221);
  38. }
  39. #section6 {
  40. box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
  41. left: -26px;
  42. top: -10px;
  43. position: absolute;
  44. background-color: rgb(128, 128, 255);
  45. }
  46. #section7 {
  47. height: 100%;
  48. box-sizing: border-box;
  49. left: 220px;
  50. top: 40px;
  51. position: absolute;
  52. background-color: rgb(128, 255, 255);
  53. }
  54. #core_drawer_panel {
  55. position: absolute;
  56. top: 0px;
  57. right: 0px;
  58. bottom: 0px;
  59. left: 0px;
  60. background-color: rgb(128, 128, 192);
  61. }
  62. #section {
  63. box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
  64. background-color: rgb(128, 255, 128);
  65. }
  66. #core_icon {
  67. left: 0px;
  68. top: 0px;
  69. position: absolute;
  70. }
  71. #section1 {
  72. left: 0px;
  73. top: 0px;
  74. position: absolute;
  75. }
  76. </style>
  77. <section id="section3" main></section>
  78. <core-drawer-panel transition id="core_drawer_panel1" touch-action>
  79. <section id="section4" drawer></section>
  80. <section id="section5" main></section>
  81. </core-drawer-panel>
  82. <section id="section7" main>
  83. <section id="section6" drawer></section>
  84. </section>
  85. <core-drawer-panel transition selected="main" id="core_drawer_panel" touch-action>
  86. <section id="section" drawer></section>
  87. <core-icon icon="search" id="core_icon"></core-icon>
  88. <section id="section1"></section>
  89. </core-drawer-panel>
  90. </template>
  91.  
  92. <script>
  93.  
  94. Polymer({
  95.  
  96. });
  97.  
  98. </script>
  99.  
  100. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement