Advertisement
Guest User

Untitled

a guest
Feb 26th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. <link rel="import" href="../google-map/google-map-search.html">
  2. <link rel="import" href="../notification-elements/notification-alert.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. #notification_alert {
  15. left: -180px;
  16. top: 60px;
  17. position: absolute;
  18. width: 100%;
  19. height: 100%;
  20. }
  21. #google_map_search {
  22. left: 920px;
  23. top: 420px;
  24. position: absolute;
  25. }
  26. </style>
  27. <google-map-search id="google_map_search"></google-map-search>
  28. <notification-alert message="Hi there!" icon="icon.png" name="notification" id="notification_alert"></notification-alert>
  29. </template>
  30.  
  31. <script>
  32.  
  33. Polymer({
  34.  
  35. });
  36.  
  37. </script>
  38.  
  39. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement