Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2015
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <link rel="import" href="../core-input/core-input.html">
  2.  
  3. <polymer-element name="my-element">
  4.  
  5. <template>
  6. <style>
  7. :host {
  8. position: absolute;
  9. width: 100%;
  10. height: 100%;
  11. box-sizing: border-box;
  12. }
  13. #input {
  14. padding: 15px;
  15. left: 50px;
  16. top: 30px;
  17. position: absolute;
  18. }
  19. </style>
  20. <input id="input" placeholder="type something..." is="core-input">
  21. </template>
  22.  
  23. <script>
  24.  
  25. Polymer({
  26.  
  27. });
  28.  
  29. </script>
  30.  
  31. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement