Advertisement
Guest User

Untitled

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