Advertisement
Guest User

Untitled

a guest
May 28th, 2015
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 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.  
  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. #core_header_panel {
  16. position: static;
  17. }
  18. #core_toolbar {
  19. color: rgb(255, 255, 255);
  20. background-color: rgb(79, 125, 201);
  21. }
  22. #section {
  23. height: 1000px;
  24. background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230));
  25. }
  26. </style>
  27. <core-header-panel mode="standard" id="core_header_panel" center horizontal layout>
  28. <core-toolbar id="core_toolbar">
  29. <core-icon-button icon="menu" id="core_icon_button"></core-icon-button>
  30. <div id="div">Header</div>
  31. </core-toolbar>
  32. <section id="section"></section>
  33. </core-header-panel>
  34. </template>
  35.  
  36. <script>
  37.  
  38. Polymer({
  39.  
  40. });
  41.  
  42. </script>
  43.  
  44. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement