Advertisement
Guest User

Untitled

a guest
May 1st, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 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-scroll-header-panel/core-scroll-header-panel.html">
  4. <link rel="import" href="../google-map/google-map.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_scaffold {
  17. position: absolute;
  18. top: 400px;
  19. right: 0px;
  20. bottom: 0px;
  21. left: 1210px;
  22. }
  23. #core_scroll_header_panel {
  24. width: 100%;
  25. height: 460px;
  26. left: 0px;
  27. top: 0px;
  28. position: static;
  29. }
  30. #core_toolbar {
  31. color: rgb(241, 241, 241);
  32. fill: rgb(241, 241, 241);
  33. width: 100%;
  34. background-color: rgb(66, 133, 244);
  35. }
  36. #section {
  37. height: 400px;
  38. width: 100%;
  39. left: 0px;
  40. top: 60px;
  41. position: absolute;
  42. background: linear-gradient(rgb(214, 227, 231), lightblue);
  43. }
  44. #google_map {
  45. width: 50%;
  46. height: 50%;
  47. display: block;
  48. left: 10px;
  49. top: 10px;
  50. position: absolute;
  51. }
  52. </style>
  53. <core-scroll-header-panel headermargin="128" condenses headerheight="192" id="core_scroll_header_panel">
  54. <core-toolbar id="core_toolbar" class="small">
  55. <core-icon-button icon="arrow-back" id="core_icon_button"></core-icon-button>
  56. <div id="div" flex></div>
  57. <core-icon-button icon="search" id="core_icon_button1"></core-icon-button>
  58. <core-icon-button icon="more-vert" id="core_icon_button2"></core-icon-button>
  59. <div id="div1" class="bottom indent">Title</div>
  60. </core-toolbar>
  61. <section id="section" content>
  62. <google-map latitude="37.77493000000002" id="google_map"></google-map>
  63. </section>
  64. </core-scroll-header-panel>
  65. </template>
  66.  
  67. <script>
  68.  
  69. Polymer({
  70.  
  71. });
  72.  
  73. </script>
  74.  
  75. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement