Advertisement
Guest User

Untitled

a guest
Feb 1st, 2015
180
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-header-panel/core-header-panel.html">
  4. <link rel="import" href="../topeka-elements/theme.html">
  5. <link rel="import" href="../topeka-elements/topeka-resources.html">
  6. <link rel="import" href="../topeka-elements/topeka-app.html">
  7.  
  8. <polymer-element name="my-element">
  9.  
  10. <template>
  11. <style>
  12. :host {
  13. position: absolute;
  14. width: 100%;
  15. height: 100%;
  16. box-sizing: border-box;
  17. }
  18. #topeka_app {
  19. width: 300px;
  20. height: 300px;
  21. min-height: 450px;
  22. left: 480px;
  23. top: 170px;
  24. position: absolute;
  25. }
  26. #core_header_panel {
  27. width: 300px;
  28. height: 400px;
  29. left: 140px;
  30. top: 40px;
  31. position: absolute;
  32. }
  33. #core_toolbar {
  34. color: rgb(255, 255, 255);
  35. background-color: rgb(79, 125, 201);
  36. }
  37. #section {
  38. height: 1000px;
  39. background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230));
  40. }
  41. </style>
  42. <core-header-panel mode="standard" id="core_header_panel">
  43. <core-toolbar id="core_toolbar">
  44. <core-icon-button icon="menu" id="core_icon_button"></core-icon-button>
  45. <div id="div">Header</div>
  46. </core-toolbar>
  47. <section id="section"></section>
  48. </core-header-panel>
  49. </template>
  50.  
  51. <script>
  52.  
  53. Polymer({
  54.  
  55. });
  56.  
  57. </script>
  58.  
  59. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement