Advertisement
Guest User

Untitled

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