Advertisement
Guest User

Untitled

a guest
May 25th, 2015
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. <link rel="import" href="../notification-elements/notification-alert.html">
  2. <link rel="import" href="../core-field/core-field.html">
  3. <link rel="import" href="../core-icon/core-icon.html">
  4. <link rel="import" href="../core-input/core-input.html">
  5. <link rel="import" href="../core-icons/core-icons.html">
  6.  
  7. <polymer-element name="my-element">
  8.  
  9. <template>
  10. <style>
  11. :host {
  12. position: absolute;
  13. width: 100%;
  14. height: 100%;
  15. box-sizing: border-box;
  16. }
  17. #notification_alert {
  18. left: 540px;
  19. top: 420px;
  20. position: absolute;
  21. }
  22. #core_field {
  23. left: 580px;
  24. top: 350px;
  25. position: absolute;
  26. }
  27. </style>
  28. <notification-alert message="Hi there!" icon="icon.png" name="notification" id="notification_alert"></notification-alert>
  29. <core-field id="core_field" icon="search" theme="core-light-theme" center horizontal layout>
  30. <core-icon icon="search" id="core_icon"></core-icon>
  31. <core-input id="core_input" flex></core-input>
  32. </core-field>
  33. </template>
  34.  
  35. <script>
  36.  
  37. Polymer({
  38.  
  39. });
  40.  
  41. </script>
  42.  
  43. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement