Advertisement
Guest User

Untitled

a guest
May 28th, 2015
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 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="../topeka-elements/topeka-datasource.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_ajax {
  17. left: 1620px;
  18. top: 560px;
  19. }
  20. #core_field {
  21. left: 1040px;
  22. top: 560px;
  23. position: absolute;
  24. }
  25. #topeka_app {
  26. width: 300px;
  27. height: 300px;
  28. min-height: 450px;
  29. left: 1720px;
  30. top: 680px;
  31. }
  32. #div {
  33. height: 100%;
  34. width: 100%;
  35. overflow: hidden;
  36. left: 360px;
  37. top: 180px;
  38. position: absolute;
  39. }
  40. </style>
  41. <core-field id="core_field" icon="search" theme="core-light-theme" center horizontal layout>
  42. <core-input id="core_input" flex></core-input>
  43. </core-field>
  44. <div id="div">
  45. <topeka-datasource url="../topeka-elements/categories.json" id="datasource" hidden></topeka-datasource>
  46. </div>
  47. </template>
  48.  
  49. <script>
  50.  
  51. Polymer({
  52.  
  53. });
  54.  
  55. </script>
  56.  
  57. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement