Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1. <link rel="import" href="../core-icons/core-icons.html">
  2. <link rel="import" href="../paper-item/paper-item.html">
  3. <link rel="import" href="../paper-input/paper-input.html">
  4. <link rel="import" href="../paper-checkbox/paper-checkbox.html">
  5. <link rel="import" href="../paper-button/paper-button.html">
  6. <link rel="import" href="../paper-toast/paper-toast.html">
  7.  
  8. <polymer-element name="my-element">
  9.  
  10. <template>
  11. <style>
  12. :host {
  13. position: absolute;
  14. width: 100%;
  15. height: 100%;
  16. box-sizing: border-box;
  17. padding: 50px;
  18. top: 0px;
  19. left: 0px;
  20. }
  21. #paper_button {
  22. left: 580px;
  23. top: 470px;
  24. position: absolute;
  25. width: 150px;
  26. height: 30px;
  27. background-color: rgb(72, 146, 236);
  28. }
  29. #paper_button1 {
  30. left: 740px;
  31. top: 470px;
  32. position: absolute;
  33. width: 150px;
  34. height: 30px;
  35. }
  36. #paper_checkbox {
  37. left: 570px;
  38. top: 420px;
  39. position: absolute;
  40. width: 140px;
  41. height: 20px;
  42. }
  43. #paper_input1 {
  44. left: 570px;
  45. top: 340px;
  46. position: absolute;
  47. width: 330px;
  48. height: 50px;
  49. }
  50. #paper_input {
  51. left: 570px;
  52. top: 270px;
  53. position: absolute;
  54. width: 330px;
  55. height: 60px;
  56. }
  57. #paper_shadow {
  58. left: 0px;
  59. top: 0px;
  60. position: absolute;
  61. }
  62. #div {
  63. left: 1190px;
  64. top: 610px;
  65. position: absolute;
  66. }
  67. #paper_item {
  68. left: 570px;
  69. top: 200px;
  70. position: absolute;
  71. width: 330px;
  72. height: 60px;
  73. padding: 10px 110px;
  74. background-color: rgb(209, 227, 250);
  75. }
  76. #paper_toast {
  77. left: 1130px;
  78. top: 620px;
  79. position: absolute;
  80. }
  81. #paper_toast1 {
  82. left: 1300px;
  83. top: 660px;
  84. position: absolute;
  85. }
  86. </style>
  87. <div id="div" layout horizontal>
  88. </div>
  89. <paper-item raised recenteringtouch id="paper_item" icon="settings" label="Item" center>Login form</paper-item>
  90. <paper-input label="Enter email" floatinglabel id="paper_input"></paper-input>
  91. <paper-input label="Enter password" floatinglabel id="paper_input1"></paper-input>
  92. <paper-checkbox label="Remember me" id="paper_checkbox"></paper-checkbox>
  93. <paper-button raised id="paper_button">Login</paper-button>
  94. <paper-button raised id="paper_button1" class="custom">Cencle</paper-button>
  95. <paper-toast text="Toast!" id="paper_toast" class="core-transition core-transition-bottom" touch-action="none"></paper-toast>
  96. <paper-toast text="Toast!" id="paper_toast1" touch-action="none" class="core-transition core-transition-bottom"></paper-toast>
  97. </template>
  98.  
  99. <script>
  100.  
  101. Polymer({
  102.  
  103. });
  104.  
  105. </script>
  106.  
  107. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement