Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. <link rel="import" href="../core-scaffold/core-scaffold.html">
  2. <link rel="import" href="../core-header-panel/core-header-panel.html">
  3. <link rel="import" href="../core-menu/core-menu.html">
  4. <link rel="import" href="../core-item/core-item.html">
  5. <link rel="import" href="../core-icon-button/core-icon-button.html">
  6. <link rel="import" href="../core-toolbar/core-toolbar.html">
  7. <link rel="import" href="../core-menu/core-submenu.html">
  8.  
  9. <polymer-element name="my-element">
  10.  
  11. <template>
  12. <style>
  13. :host {
  14. position: absolute;
  15. width: 100%;
  16. height: 100%;
  17. box-sizing: border-box;
  18. }
  19. #core_scroll_header_panel {
  20. width: 1260px;
  21. height: 740px;
  22. left: -10px;
  23. top: 0px;
  24. position: absolute;
  25. }
  26. #core_toolbar {
  27. color: rgb(241, 241, 241);
  28. fill: rgb(241, 241, 241);
  29. background-color: rgb(66, 133, 244);
  30. }
  31. #section {
  32. height: 5000px;
  33. background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230));
  34. }
  35. #core_scaffold {
  36. position: absolute;
  37. top: 0px;
  38. right: 0px;
  39. bottom: 0px;
  40. left: 0px;
  41. }
  42. #core_header_panel {
  43. background-color: rgb(255, 255, 255);
  44. }
  45. #core_menu {
  46. font-size: 16px;
  47. }
  48. #core_icon_button {
  49. left: 1122px;
  50. top: 12px;
  51. position: absolute;
  52. }
  53. #div {
  54. width: 100%;
  55. }
  56. </style>
  57. <core-scaffold id="core_scaffold">
  58. <core-header-panel mode="seamed" id="core_header_panel" navigation flex>
  59. <core-toolbar id="core_toolbar"></core-toolbar>
  60. <core-menu valueattr="label" id="core_menu" theme="core-light-theme">
  61. <core-item id="core_item" icon="settings" label="Item1" horizontal center layout></core-item>
  62. <core-item id="core_item1" icon="settings" label="Item2" horizontal center layout></core-item>
  63. </core-menu>
  64. </core-header-panel>
  65. <core-icon-button icon="menu" id="core_icon_button" theme="core-light-theme"></core-icon-button>
  66. </core-scaffold>
  67. </template>
  68.  
  69. <script>
  70.  
  71. Polymer({
  72.  
  73. });
  74.  
  75. </script>
  76.  
  77. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement