Guest User

Untitled

a guest
Feb 6th, 2016
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. <link rel="import" href="../core-scaffold/core-scaffold.html">
  2. <link rel="import" href="../core-header-panel/core-header-panel.html">
  3. <link rel="import" href="../core-menu/core-menu.html">
  4. <link rel="import" href="../core-item/core-item.html">
  5. <link rel="import" href="../core-icon-button/core-icon-button.html">
  6. <link rel="import" href="../core-toolbar/core-toolbar.html">
  7. <link rel="import" href="../core-menu/core-submenu.html">
  8.  
  9. <polymer-element name="my-element">
  10.  
  11. <template>
  12. <style>
  13. :host {
  14. position: absolute;
  15. width: 100%;
  16. height: 100%;
  17. box-sizing: border-box;
  18. }
  19. #core_scaffold {
  20. position: absolute;
  21. top: 0px;
  22. right: 0px;
  23. bottom: 0px;
  24. left: 0px;
  25. width: 100%;
  26. height: 100%;
  27. }
  28. #core_header_panel {
  29. background-color: rgb(255, 255, 255);
  30. }
  31. #core_toolbar {
  32. color: rgb(255, 255, 255);
  33. background-color: rgb(79, 125, 201);
  34. }
  35. #core_menu {
  36. font-size: 16px;
  37. }
  38. </style>
  39. <core-scaffold id="core_scaffold">
  40. <core-header-panel mode="seamed" id="core_header_panel" navigation flex>
  41. <core-toolbar id="core_toolbar"></core-toolbar>
  42. <core-menu valueattr="label" id="core_menu" theme="core-light-theme">
  43. <core-item id="core_item" icon="settings" label="Item1" horizontal center layout></core-item>
  44. <core-item id="core_item1" icon="settings" label="Item2" horizontal center layout></core-item>
  45. </core-menu>
  46. </core-header-panel>
  47. <div id="div" tool>Title</div>
  48. </core-scaffold>
  49. </template>
  50.  
  51. <script>
  52.  
  53. Polymer({
  54.  
  55. });
  56.  
  57. </script>
  58.  
  59. </polymer-element>
Add Comment
Please, Sign In to add comment