Advertisement
Guest User

Untitled

a guest
Jan 31st, 2015
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 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.  
  4. <polymer-element name="my-element">
  5.  
  6. <template>
  7. <style>
  8. #core_toolbar {
  9. right: 0px;
  10. left: 0px;
  11. color: rgb(255, 255, 255);
  12. fill: rgb(255, 255, 255);
  13. top: 0px;
  14. position: absolute;
  15. background-color: rgb(79, 125, 201);
  16. }
  17. </style>
  18. <core-toolbar id="core_toolbar">
  19. <core-icon-button icon="menu" id="core_icon_button"></core-icon-button>
  20. <div id="div" flex>Toolbar</div>
  21. </core-toolbar>
  22. </template>
  23.  
  24. <script>
  25.  
  26. Polymer({
  27.  
  28. });
  29.  
  30. </script>
  31.  
  32. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement