Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. <link rel="import" href="../cool-clock/cool-clock.html">
  2. <link rel="import" href="../paper-input/paper-input.html">
  3. <link rel="import" href="../paper-button/paper-button.html">
  4.  
  5. <polymer-element name="my-element">
  6.  
  7. <template>
  8. <style>
  9. :host {
  10. position: absolute;
  11. width: 100%;
  12. height: 100%;
  13. box-sizing: border-box;
  14. }
  15. #cool_clock {
  16. width: 400px;
  17. height: 300px;
  18. left: 920px;
  19. top: 570px;
  20. position: absolute;
  21. }
  22. #paper_button {
  23. left: 240px;
  24. top: 200px;
  25. position: absolute;
  26. opacity: 1;
  27. }
  28. #paper_input {
  29. left: 240px;
  30. top: 90px;
  31. position: absolute;
  32. }
  33. #paper_input1 {
  34. left: 240px;
  35. top: 140px;
  36. position: absolute;
  37. }
  38. </style>
  39. <cool-clock id="cool_clock"></cool-clock>
  40. <paper-input label="Type something..." floatinglabel id="paper_input"></paper-input>
  41. <paper-input label="Type something..." id="paper_input1"></paper-input>
  42. <paper-button raised id="paper_button">Save</paper-button>
  43. </template>
  44.  
  45. <script>
  46.  
  47. Polymer({
  48.  
  49. });
  50.  
  51. </script>
  52.  
  53. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement