Advertisement
Guest User

Untitled

a guest
Aug 1st, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. <link rel="import" href="../paper-checkbox/paper-checkbox.html">
  2. <link rel="import" href="../core-icons/core-icons.html">
  3. <link rel="import" href="../core-icon/core-icon.html">
  4. <link rel="import" href="../core-ajax/core-ajax.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. top: 0px;
  16. left: 0px;
  17. }
  18. #paper_checkbox {
  19. left: 210px;
  20. top: 180px;
  21. position: absolute;
  22. }
  23. #paper_checkbox1 {
  24. left: 210px;
  25. top: 210px;
  26. position: absolute;
  27. }
  28. #paper_checkbox2 {
  29. left: 210px;
  30. top: 240px;
  31. position: absolute;
  32. }
  33. #paper_checkbox3 {
  34. left: 340px;
  35. top: 180px;
  36. position: absolute;
  37. }
  38. #paper_checkbox4 {
  39. left: 340px;
  40. top: 210px;
  41. position: absolute;
  42. }
  43. #paper_checkbox5 {
  44. left: 340px;
  45. top: 240px;
  46. position: absolute;
  47. }
  48. #core_icon {
  49. left: 190px;
  50. top: 90px;
  51. position: absolute;
  52. width: 30px;
  53. height: 30px;
  54. }
  55. #core_ajax {
  56. left: 1070px;
  57. top: 460px;
  58. position: absolute;
  59. }
  60. #core_ajax1 {
  61. left: 1580px;
  62. top: 670px;
  63. }
  64. </style>
  65. <paper-checkbox label="Sunday" id="paper_checkbox"></paper-checkbox>
  66. <paper-checkbox label="Monday" id="paper_checkbox1"></paper-checkbox>
  67. <paper-checkbox label="Tuesday" id="paper_checkbox2"></paper-checkbox>
  68. <paper-checkbox label="Wednesday" id="paper_checkbox3"></paper-checkbox>
  69. <paper-checkbox label="Thursday" id="paper_checkbox4"></paper-checkbox>
  70. <core-icon icon="search" id="core_icon"></core-icon>
  71. <paper-checkbox label="Friday" id="paper_checkbox5"></paper-checkbox>
  72. <core-ajax handleas="json" method="GET" id="core_ajax" hidden></core-ajax>
  73. </template>
  74.  
  75. <script>
  76.  
  77. Polymer({
  78.  
  79. });
  80.  
  81. </script>
  82.  
  83. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement