Advertisement
Guest User

Untitled

a guest
Apr 24th, 2015
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 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. #google_map_directions {
  39. left: 0px;
  40. top: 0px;
  41. position: absolute;
  42. width: 100%;
  43. height: 100%;
  44. }
  45. </style>
  46. <core-scaffold id="core_scaffold">
  47. <core-header-panel mode="seamed" id="core_header_panel" navigation flex>
  48. <core-toolbar id="core_toolbar"></core-toolbar>
  49. <core-menu selected="Item1" valueattr="label" selectedindex="0" id="core_menu" theme="core-light-theme">
  50. <core-item id="core_item" icon="star" label="Inicio" horizontal center layout active></core-item>
  51. <core-item id="core_item1" icon="star" label="Salir" horizontal center layout></core-item>
  52. </core-menu>
  53. </core-header-panel>
  54. <div id="div" tool>Title</div>
  55. </core-scaffold>
  56. </template>
  57.  
  58. <script>
  59.  
  60. Polymer({
  61. map: null
  62. });
  63.  
  64. </script>
  65.  
  66. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement