Advertisement
Guest User

Untitled

a guest
Feb 24th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 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-scroll-header-panel/core-scroll-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_scroll_header_panel {
  16. width: 380px;
  17. height: 460px;
  18. left: 180px;
  19. top: 290px;
  20. position: absolute;
  21. }
  22. #core_toolbar {
  23. background-color: rgb(66, 133, 244);
  24. color: rgb(241, 241, 241);
  25. fill: rgb(241, 241, 241);
  26. }
  27. #section {
  28. height: 5000px;
  29. background: linear-gradient(rgb(214, 227, 231), lightblue);
  30. }
  31. </style>
  32. <core-scroll-header-panel headermargin="128" headerheight="192" id="core_scroll_header_panel" condensed>
  33. <core-toolbar id="core_toolbar" class="tall">
  34. <core-icon-button icon="arrow-back" id="core_icon_button"></core-icon-button>
  35. <div id="div" flex></div>
  36. <core-icon-button icon="search" id="core_icon_button1"></core-icon-button>
  37. <core-icon-button icon="more-vert" id="core_icon_button2"></core-icon-button>
  38. <div id="div1" class="bottom indent">Title</div>
  39. </core-toolbar>
  40. <section id="section" content></section>
  41. </core-scroll-header-panel>
  42. </template>
  43.  
  44. <script>
  45.  
  46. Polymer({
  47.  
  48. });
  49.  
  50. </script>
  51.  
  52. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement