Advertisement
Guest User

Untitled

a guest
May 27th, 2015
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. <link rel="import" href="../paper-input/paper-input.html">
  2. <link rel="import" href="../paper-button/paper-button.html">
  3.  
  4. <polymer-element name="my-element">
  5.  
  6. <template>
  7. <style>
  8. :host {
  9. box-sizing: border-box;
  10. }
  11. #core_ajax {
  12. left: 1650px;
  13. top: 550px;
  14. }
  15. #paper_input {
  16. left: 50px;
  17. top: 80px;
  18. position: absolute;
  19. }
  20. #paper_input1 {
  21. left: 50px;
  22. top: 140px;
  23. position: absolute;
  24. }
  25. #paper_button {
  26. left: 50px;
  27. top: 220px;
  28. position: absolute;
  29. border: 1px solid gray;
  30. }
  31. #paper_button1 {
  32. left: 120px;
  33. top: 220px;
  34. position: absolute;
  35. border: 1px solid gray;
  36. }
  37. </style>
  38. <paper-input label="ID" floatinglabel id="paper_input"></paper-input>
  39. <paper-input label="Password" floatinglabel id="paper_input1" type="password"></paper-input>
  40. <paper-button id="paper_button">login</paper-button>
  41. <paper-button id="paper_button1">JOIN</paper-button>
  42. </template>
  43.  
  44. <script>
  45.  
  46. Polymer({
  47.  
  48. });
  49.  
  50. </script>
  51.  
  52. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement