Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 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.  
  4. <polymer-element name="my-element">
  5.  
  6. <template>
  7. <style>
  8. :host {
  9. position: absolute;
  10. width: 100%;
  11. height: 100%;
  12. box-sizing: border-box;
  13. }
  14. #google_map {
  15. width: 400px;
  16. height: 400px;
  17. display: block;
  18. left: 800px;
  19. top: 550px;
  20. }
  21. #core_toolbar {
  22. right: 0px;
  23. left: 0px;
  24. color: rgb(255, 255, 255);
  25. fill: rgb(255, 255, 255);
  26. top: 0px;
  27. position: absolute;
  28. background-color: rgb(79, 125, 201);
  29. }
  30. </style>
  31. <core-toolbar id="core_toolbar">
  32. <core-icon-button icon="menu" id="core_icon_button"></core-icon-button>
  33. <div id="div" flex>Rapido</div>
  34. </core-toolbar>
  35. </template>
  36.  
  37. <script>
  38.  
  39. Polymer({
  40.  
  41. });
  42.  
  43. </script>
  44.  
  45. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement