Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. <link rel="import" href="../core-drawer-panel/core-drawer-panel.html">
  2. <link rel="import" href="../core-menu/core-submenu.html">
  3. <link rel="import" href="../core-item/core-item.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_drawer_panel {
  16. position: absolute;
  17. top: 0px;
  18. right: 0px;
  19. bottom: 0px;
  20. left: 0px;
  21. }
  22. #section {
  23. box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
  24. background-color: rgb(250, 250, 250);
  25. }
  26. #section1 {
  27. height: 100%;
  28. box-sizing: border-box;
  29. position: absolute;
  30. top: 0px;
  31. left: 0px;
  32. width: 100%;
  33. background-color: rgb(221, 221, 221);
  34. }
  35. #core_menu {
  36. font-size: 16px;
  37. left: 2px;
  38. top: 12px;
  39. position: absolute;
  40. }
  41. </style>
  42. <core-drawer-panel transition id="core_drawer_panel" touch-action>
  43. <section id="section" drawer>
  44. <core-menu selected="0" selectedindex="0" id="core_menu">
  45. <core-submenu opened active id="core_submenu" icon="settings" label="Topics">
  46. <core-item id="core_item" label="Topic 1" horizontal center layout></core-item>
  47. <core-item id="core_item1" label="Topic 2" horizontal center layout></core-item>
  48. </core-submenu>
  49. <core-submenu id="core_submenu1" icon="settings" label="Favorites">
  50. <core-item id="core_item2" label="Favorite 1" horizontal center layout></core-item>
  51. <core-item id="core_item3" label="Favorite 2" horizontal center layout></core-item>
  52. <core-item id="core_item4" label="Favorite 3" horizontal center layout></core-item>
  53. </core-submenu>
  54. </core-menu>
  55. </section>
  56. <section id="section1" main></section>
  57. </core-drawer-panel>
  58. </template>
  59.  
  60. <script>
  61.  
  62. Polymer({
  63.  
  64. });
  65.  
  66. </script>
  67.  
  68. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement