Advertisement
Guest User

Untitled

a guest
Jul 27th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 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. <link rel="import" href="../google-map/google-map.html">
  9.  
  10. <polymer-element name="my-element">
  11.  
  12. <template>
  13. <style>
  14. :host {
  15. position: absolute;
  16. width: 100%;
  17. height: 100%;
  18. box-sizing: border-box;
  19. }
  20. #topeka_app {
  21. width: 300px;
  22. height: 300px;
  23. min-height: 450px;
  24. left: 1690px;
  25. top: 660px;
  26. }
  27. #core_icon {
  28. height: 64px;
  29. width: 64px;
  30. left: 1680px;
  31. top: 710px;
  32. }
  33. #section {
  34. box-sizing: border-box;
  35. width: 420px;
  36. height: 582px;
  37. left: 1640px;
  38. top: 600px;
  39. }
  40. #core_scaffold {
  41. position: absolute;
  42. top: -20px;
  43. right: 0px;
  44. bottom: 0px;
  45. left: 0px;
  46. }
  47. #core_header_panel {
  48. background-color: rgb(255, 255, 255);
  49. }
  50. #core_toolbar {
  51. color: rgb(255, 255, 255);
  52. background-color: rgb(79, 125, 201);
  53. }
  54. #core_menu {
  55. font-size: 16px;
  56. }
  57. #google_map {
  58. width: 1050px;
  59. height: 780px;
  60. display: block;
  61. left: 260px;
  62. top: 70px;
  63. position: absolute;
  64. }
  65. </style>
  66. <core-scaffold id="core_scaffold">
  67. <core-header-panel mode="seamed" id="core_header_panel" navigation flex>
  68. <core-toolbar id="core_toolbar"></core-toolbar>
  69. <core-menu selected="Item1" valueattr="label" selectedindex="0" id="core_menu" theme="core-light-theme">
  70. <core-item id="core_item" icon="settings" label="Item1" horizontal center layout active></core-item>
  71. <core-item id="core_item1" icon="settings" label="Item2" horizontal center layout></core-item>
  72. </core-menu>
  73. </core-header-panel>
  74. <div id="div" tool>Title</div>
  75. <google-map latitude="37.29031531657508" longitude="-120.57097029296875" id="google_map"></google-map>
  76. </core-scaffold>
  77. </template>
  78.  
  79. <script>
  80.  
  81. Polymer({
  82.  
  83. });
  84.  
  85. </script>
  86.  
  87. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement