Advertisement
Guest User

Untitled

a guest
Apr 24th, 2015
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. <link rel="import" href="../core-drawer-panel/core-drawer-panel.html">
  2. <link rel="import" href="../core-icon-button/core-icon-button.html">
  3. <link rel="import" href="../core-toolbar/core-toolbar.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. #core_scroll_header_panel {
  16. width: 380px;
  17. height: 460px;
  18. left: 1390px;
  19. top: 620px;
  20. }
  21. #core_drawer_panel {
  22. position: absolute;
  23. top: 0px;
  24. right: 0px;
  25. bottom: 0px;
  26. left: 0px;
  27. }
  28. #section {
  29. box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
  30. background-color: rgb(250, 250, 250);
  31. }
  32. #section1 {
  33. height: 100%;
  34. box-sizing: border-box;
  35. background-color: rgb(221, 221, 221);
  36. }
  37. #core_toolbar {
  38. color: rgb(255, 255, 255);
  39. left: -66px;
  40. top: 30px;
  41. position: absolute;
  42. background-color: rgb(79, 125, 201);
  43. }
  44. </style>
  45. <core-drawer-panel transition id="core_drawer_panel" touch-action>
  46. <section id="section" drawer></section>
  47. <section id="section1" main></section>
  48. <core-toolbar id="core_toolbar">
  49. <core-icon-button icon="menu" id="core_icon_button"></core-icon-button>
  50. <div id="div">Header</div>
  51. </core-toolbar>
  52. </core-drawer-panel>
  53. </template>
  54.  
  55. <script>
  56.  
  57. Polymer({
  58.  
  59. });
  60.  
  61. </script>
  62.  
  63. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement