Advertisement
Guest User

Untitled

a guest
Jan 28th, 2015
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 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. top: 0px;
  15. left: 0px;
  16. }
  17. #core_scaffold {
  18. position: absolute;
  19. top: 350px;
  20. right: 0px;
  21. bottom: 0px;
  22. left: 1050px;
  23. }
  24. #core_scroll_header_panel {
  25. width: 380px;
  26. height: 460px;
  27. left: 290px;
  28. top: 60px;
  29. position: absolute;
  30. }
  31. #core_toolbar {
  32. color: rgb(241, 241, 241);
  33. fill: rgb(241, 241, 241);
  34. left: 0px;
  35. top: 0px;
  36. position: absolute;
  37. background-color: rgb(66, 133, 244);
  38. }
  39. #section {
  40. height: 5000px;
  41. background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230));
  42. }
  43. #section1 {
  44. left: 860px;
  45. top: 380px;
  46. position: absolute;
  47. }
  48. #core_selector {
  49. width: 100%;
  50. height: 50px;
  51. left: -10px;
  52. top: 98px;
  53. position: absolute;
  54. }
  55. #section2 {
  56. left: 780px;
  57. top: 330px;
  58. position: absolute;
  59. }
  60. </style>
  61. <core-scroll-header-panel headermargin="128" condenses headerheight="192" id="core_scroll_header_panel">
  62. <section id="section" content>
  63. <core-selector selected="0" id="core_selector"></core-selector>
  64. </section>
  65. <core-toolbar id="core_toolbar" class="tall">
  66. <core-icon-button icon="arrow-back" id="core_icon_button"></core-icon-button>
  67. <div id="div" flex></div>
  68. <core-icon-button icon="search" id="core_icon_button1"></core-icon-button>
  69. <core-icon-button icon="more-vert" id="core_icon_button2"></core-icon-button>
  70. <div id="div1" class="bottom indent">Title</div>
  71. </core-toolbar>
  72. </core-scroll-header-panel>
  73. <section id="section1"></section>
  74. <section id="section2"></section>
  75. </template>
  76.  
  77. <script>
  78.  
  79. Polymer({
  80.  
  81. });
  82.  
  83. </script>
  84.  
  85. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement