Advertisement
Guest User

Untitled

a guest
Dec 21st, 2014
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. <link rel="import" href="../core-field/core-field.html">
  2. <link rel="import" href="../core-icon/core-icon.html">
  3. <link rel="import" href="../core-input/core-input.html">
  4. <link rel="import" href="../core-icons/core-icons.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_card {
  17. position: absolute;
  18. width: 300px;
  19. height: 300px;
  20. border-radius: 2px;
  21. box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
  22. left: 50px;
  23. top: 40px;
  24. background-color: rgb(255, 255, 255);
  25. }
  26. </style>
  27. <core-card id="core_card" layout vertical>
  28. <core-field id="core_field" icon="search" theme="core-light-theme" center horizontal layout>
  29. <core-icon icon="search" id="core_icon"></core-icon>
  30. <core-input id="core_input" flex></core-input>
  31. </core-field>
  32. </core-card>
  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