Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. <link rel="import" href="../core-input/core-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. position: absolute;
  10. width: 100%;
  11. height: 100%;
  12. box-sizing: border-box;
  13. background-color: rgb(255, 255, 255);
  14. }
  15. #paper_button {
  16. left: 0px;
  17. top: 90px;
  18. position: absolute;
  19. }
  20. #input {
  21. padding: 15px;
  22. left: 0px;
  23. top: 0px;
  24. position: absolute;
  25. }
  26. #input1 {
  27. padding: 15px;
  28. left: 0px;
  29. top: 40px;
  30. position: absolute;
  31. }
  32. </style>
  33. <input id="input" placeholder="email" is="core-input">
  34. <input id="input1" placeholder="mot de passe" is="core-input">
  35. <paper-button id="paper_button">Se connecter</paper-button>
  36. </template>
  37.  
  38. <script>
  39.  
  40. Polymer({
  41.  
  42. });
  43.  
  44. </script>
  45.  
  46. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement