Advertisement
Guest User

Untitled

a guest
May 25th, 2015
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. <link rel="import" href="../core-icon-button/core-icon-button.html">
  2. <link rel="import" href="../core-toolbar/core-toolbar.html">
  3. <link rel="import" href="../core-header-panel/core-header-panel.html">
  4. <link rel="import" href="../paper-input/paper-input.html">
  5. <link rel="import" href="../paper-checkbox/paper-checkbox.html">
  6. <link rel="import" href="../paper-button/paper-button.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. }
  18. #core_header_panel {
  19. width: 1080px;
  20. height: 600px;
  21. left: 0px;
  22. top: 0px;
  23. position: absolute;
  24. background-color: rgb(255, 255, 255);
  25. }
  26. #core_toolbar {
  27. color: rgb(255, 255, 255);
  28. background-color: rgb(44, 90, 157);
  29. }
  30. #section {
  31. height: 1000px;
  32. left: 0px;
  33. top: 60px;
  34. position: absolute;
  35. background-image: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230));
  36. background-color: rgb(255, 255, 255);
  37. background-position: initial initial;
  38. background-repeat: initial initial;
  39. }
  40. #paper_input {
  41. left: 300px;
  42. top: 100px;
  43. position: absolute;
  44. width: 400px;
  45. }
  46. #paper_input1 {
  47. left: 300px;
  48. top: 160px;
  49. position: absolute;
  50. width: 400px;
  51. }
  52. #paper_checkbox {
  53. left: 300px;
  54. top: 240px;
  55. position: absolute;
  56. }
  57. #paper_button {
  58. left: 635px;
  59. top: 300px;
  60. position: absolute;
  61. background-color: rgb(212, 212, 212);
  62. }
  63. </style>
  64. <core-header-panel mode="standard" id="core_header_panel">
  65. <core-toolbar id="core_toolbar">
  66. <core-icon-button icon="menu" id="core_icon_button"></core-icon-button>
  67. <div id="div">Header</div>
  68. </core-toolbar>
  69. <section id="section"></section>
  70. <paper-input label="Username..." id="paper_input"></paper-input>
  71. <paper-input label="Password..." id="paper_input1"></paper-input>
  72. <paper-checkbox checked label="Remember me" id="paper_checkbox"></paper-checkbox>
  73. <paper-button id="paper_button">Log in</paper-button>
  74. </core-header-panel>
  75. </template>
  76.  
  77. <script>
  78.  
  79. Polymer({
  80.  
  81. });
  82.  
  83. </script>
  84.  
  85. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement