Advertisement
Guest User

Untitled

a guest
Jan 28th, 2015
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 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-icons/core-icons.html">
  4. <link rel="import" href="../paper-item/paper-item.html">
  5. <link rel="import" href="../core-icon/core-icon.html">
  6.  
  7. <polymer-element name="my-element">
  8.  
  9. <template>
  10. <style>
  11. :host {
  12. position: absolute;
  13. width: 100%;
  14. height: 100%;
  15. box-sizing: border-box;
  16. }
  17. #core_scaffold {
  18. position: absolute;
  19. top: 130px;
  20. right: 0px;
  21. bottom: 0px;
  22. left: 120px;
  23. }
  24. #core_toolbar1 {
  25. right: 0px;
  26. left: 110px;
  27. color: rgb(255, 255, 255);
  28. fill: rgb(255, 255, 255);
  29. top: -20px;
  30. position: absolute;
  31. background-color: rgb(79, 125, 201);
  32. }
  33. #core_toolbar {
  34. right: 0px;
  35. left: 0px;
  36. color: rgb(255, 255, 255);
  37. fill: rgb(255, 255, 255);
  38. top: 0px;
  39. position: absolute;
  40. background-color: rgb(79, 125, 201);
  41. }
  42. #paper_item {
  43. left: 0px;
  44. top: 0px;
  45. position: absolute;
  46. }
  47. #paper_item1 {
  48. left: 1100px;
  49. top: 650px;
  50. position: absolute;
  51. }
  52. #core_icon {
  53. left: 188px;
  54. top: 20px;
  55. position: absolute;
  56. }
  57. </style>
  58. <core-toolbar id="core_toolbar">
  59. <core-icon-button icon="menu" id="core_icon_button"></core-icon-button>
  60. <div id="div" flex>Toolbar</div>
  61. <paper-item id="paper_item" icon="settings" label="Item"></paper-item>
  62. <core-icon icon="search" id="core_icon"></core-icon>
  63. </core-toolbar>
  64. <paper-item id="paper_item1" icon="settings" label="Item"></paper-item>
  65. </template>
  66.  
  67. <script>
  68.  
  69. Polymer({
  70.  
  71. });
  72.  
  73. </script>
  74.  
  75. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement