Advertisement
Guest User

Untitled

a guest
Dec 27th, 2014
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. <link rel="import" href="../core-icon-button/core-icon-button.html">
  2. <link rel="import" href="../core-toolbar/core-toolbar.html">
  3. <link rel="import" href="../core-header-panel/core-header-panel.html">
  4. <link rel="import" href="../core-drawer-panel/core-drawer-panel.html">
  5.  
  6. <polymer-element name="my-element">
  7.  
  8. <template>
  9. <style>
  10. :host {
  11. position: absolute;
  12. width: 100%;
  13. height: 100%;
  14. box-sizing: border-box;
  15. }
  16. #core_header_panel {
  17. width: 1250px;
  18. height: 620px;
  19. left: -20px;
  20. top: 0px;
  21. position: absolute;
  22. }
  23. #core_toolbar {
  24. right: 0px;
  25. left: 20px;
  26. color: rgb(255, 255, 255);
  27. fill: rgb(255, 255, 255);
  28. top: 0px;
  29. position: absolute;
  30. background-color: rgb(79, 125, 201);
  31. }
  32. #core_drawer_panel {
  33. position: absolute;
  34. top: 60px;
  35. right: 0px;
  36. bottom: 0px;
  37. left: 10px;
  38. }
  39. #section {
  40. box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
  41. background-color: rgb(250, 250, 250);
  42. }
  43. #section1 {
  44. height: 100%;
  45. box-sizing: border-box;
  46. background-color: rgb(221, 221, 221);
  47. }
  48. </style>
  49. <core-header-panel mode="standard" id="core_header_panel">
  50. <core-toolbar id="core_toolbar">
  51. <core-icon-button icon="menu" id="core_icon_button"></core-icon-button>
  52. <div id="div" flex>Toolbar</div>
  53. </core-toolbar>
  54. <core-drawer-panel transition id="core_drawer_panel" touch-action>
  55. <section id="section" drawer></section>
  56. <section id="section1" main></section>
  57. </core-drawer-panel>
  58. </core-header-panel>
  59. </template>
  60.  
  61. <script>
  62.  
  63. Polymer({
  64.  
  65. });
  66.  
  67. </script>
  68.  
  69. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement