Advertisement
Guest User

Untitled

a guest
Dec 21st, 2014
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. <link rel="import" href="../core-drawer-panel/core-drawer-panel.html">
  2.  
  3. <polymer-element name="my-element">
  4.  
  5. <template>
  6. <style>
  7. :host {
  8. position: absolute;
  9. width: 100%;
  10. height: 100%;
  11. box-sizing: border-box;
  12. }
  13. #paper_tabs1 {
  14. width: 480px;
  15. color: rgb(255, 255, 255);
  16. box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px;
  17. left: 1000px;
  18. top: 550px;
  19. background-color: rgb(0, 188, 212);
  20. }
  21. #core_header_panel {
  22. width: 100%;
  23. height: 100%;
  24. left: 10px;
  25. top: 0px;
  26. position: absolute;
  27. }
  28. #core_drawer_panel {
  29. position: absolute;
  30. top: 0px;
  31. right: 0px;
  32. bottom: 0px;
  33. left: 0px;
  34. width: 100%;
  35. height: 100%;
  36. }
  37. #section {
  38. box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
  39. background-color: rgb(250, 250, 250);
  40. }
  41. #section1 {
  42. height: 100%;
  43. box-sizing: border-box;
  44. background-color: rgb(221, 221, 221);
  45. }
  46. #core_menu_button {
  47. left: 1090px;
  48. top: 480px;
  49. }
  50. #core_scaffold {
  51. position: absolute;
  52. top: 410px;
  53. right: 0px;
  54. bottom: 0px;
  55. left: 1080px;
  56. }
  57. #core_field {
  58. left: 1010px;
  59. top: 460px;
  60. }
  61. </style>
  62. <core-drawer-panel transition id="core_drawer_panel" touch-action>
  63. <section id="section" drawer></section>
  64. <section id="section1" main>
  65. <core-toolbar>
  66. <paper-tabs>
  67. <paper-tab>ONE</paper-tab>
  68. <paper-tab>TWO</paper-tab>
  69. </paper-tabs>
  70. </core-toolbar>
  71. </section>
  72. </core-drawer-panel>
  73. </template>
  74.  
  75. <script>
  76.  
  77. Polymer({
  78.  
  79. });
  80.  
  81. </script>
  82.  
  83. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement