Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 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_icon {
  16. height: 256px;
  17. width: 256px;
  18. left: 1380px;
  19. top: 690px;
  20. }
  21. #topeka_quiz_view {
  22. width: 300px;
  23. height: 300px;
  24. left: 1470px;
  25. top: 850px;
  26. }
  27. #core_scroll_header_panel {
  28. width: 100%;
  29. height: 100%;
  30. left: 0px;
  31. top: 0px;
  32. position: absolute;
  33. }
  34. #core_toolbar {
  35. color: rgb(241, 241, 241);
  36. fill: rgb(241, 241, 241);
  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. </style>
  44. <core-scroll-header-panel headermargin="128" condenses headerheight="192" id="core_scroll_header_panel">
  45. <core-toolbar id="core_toolbar" class="tall">
  46. <core-icon-button icon="arrow-back" id="core_icon_button"></core-icon-button>
  47. <div id="div" flex></div>
  48. <core-icon-button icon="search" id="core_icon_button1"></core-icon-button>
  49. <core-icon-button icon="more-vert" id="core_icon_button2"></core-icon-button>
  50. <div id="div1" class="bottom indent">Title</div>
  51. </core-toolbar>
  52. <section id="section" content></section>
  53. </core-scroll-header-panel>
  54. </template>
  55.  
  56. <script>
  57.  
  58. Polymer({
  59.  
  60. });
  61.  
  62. </script>
  63.  
  64. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement