Advertisement
Guest User

Untitled

a guest
Jan 24th, 2015
214
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-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_field1 {
  20. left: 1120px;
  21. top: 630px;
  22. }
  23. #cool_clock {
  24. width: 400px;
  25. height: 300px;
  26. left: 1200px;
  27. top: 570px;
  28. }
  29. #core_scaffold {
  30. position: absolute;
  31. top: 0px;
  32. right: 0px;
  33. bottom: 0px;
  34. left: -10px;
  35. }
  36. #core_header_panel {
  37. background-color: rgb(255, 255, 255);
  38. }
  39. #core_toolbar {
  40. color: rgb(255, 255, 255);
  41. background-color: rgb(79, 125, 201);
  42. }
  43. #core_menu {
  44. font-size: 16px;
  45. }
  46. </style>
  47. <core-scaffold id="core_scaffold">
  48. <core-header-panel mode="seamed" id="core_header_panel" navigation flex>
  49. <core-toolbar id="core_toolbar"></core-toolbar>
  50. <core-menu valueattr="label" id="core_menu" theme="core-light-theme">
  51. <core-item id="core_item" icon="settings" label="Item1" horizontal center layout></core-item>
  52. <core-item id="core_item1" icon="settings" label="Item2" horizontal center layout></core-item>
  53. </core-menu>
  54. </core-header-panel>
  55. <div id="div" tool>Title</div>
  56. </core-scaffold>
  57. </template>
  58.  
  59. <script>
  60.  
  61. Polymer({
  62.  
  63. });
  64.  
  65. </script>
  66.  
  67. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement