Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.52 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. <link rel="import" href="../topeka-elements/category-icons.html">
  9. <link rel="import" href="../core-icon/core-icon.html">
  10. <link rel="import" href="../topeka-elements/theme.html">
  11. <link rel="import" href="../topeka-elements/topeka-resources.html">
  12. <link rel="import" href="../topeka-elements/topeka-app.html">
  13.  
  14. <polymer-element name="my-element">
  15.  
  16. <template>
  17. <style>
  18. :host {
  19. position: absolute;
  20. width: 100%;
  21. height: 100%;
  22. box-sizing: border-box;
  23. }
  24. #core_scaffold {
  25. position: absolute;
  26. top: 0px;
  27. right: 0px;
  28. bottom: 0px;
  29. left: 0px;
  30. }
  31. #core_header_panel {
  32. background-color: rgb(255, 255, 255);
  33. }
  34. #core_toolbar {
  35. color: rgb(255, 255, 255);
  36. background-color: rgb(79, 125, 201);
  37. }
  38. #core_menu {
  39. font-size: 16px;
  40. }
  41. #core_submenu {
  42. left: 20px;
  43. top: 200px;
  44. position: absolute;
  45. }
  46. #section {
  47. left: 440px;
  48. top: 180px;
  49. position: absolute;
  50. }
  51. #section1 {
  52. left: 420px;
  53. top: 160px;
  54. position: absolute;
  55. }
  56. #section2 {
  57. left: 270px;
  58. top: 70px;
  59. position: absolute;
  60. width: 190px;
  61. height: 140px;
  62. background-color: rgb(255, 255, 255);
  63. }
  64. #core_icon {
  65. height: 128px;
  66. width: 128px;
  67. left: 600px;
  68. top: 320px;
  69. position: absolute;
  70. }
  71. #topeka_app {
  72. width: 300px;
  73. height: 300px;
  74. min-height: 450px;
  75. left: 1050px;
  76. top: 330px;
  77. }
  78. </style>
  79. <core-scaffold id="core_scaffold">
  80. <core-header-panel mode="seamed" id="core_header_panel" navigation flex>
  81. <core-toolbar id="core_toolbar"></core-toolbar>
  82. <core-menu selected="Dashboard" valueattr="label" selectedindex="0" id="core_menu" theme="core-light-theme">
  83. <core-item id="core_item" icon="settings" label="Dashboard" horizontal center layout active></core-item>
  84. <core-item id="core_item1" icon="settings" label="NC" horizontal center layout></core-item>
  85. <core-item id="core_item4" icon="settings" label="Entregas" horizontal center layout></core-item>
  86. </core-menu>
  87. <core-submenu id="core_submenu" icon="settings" label="Entregas">
  88. <core-item id="core_item2" label="Entregas por Mes" horizontal center layout></core-item>
  89. <core-item id="core_item3" label="Entregas de Productos" horizontal center layout></core-item>
  90. </core-submenu>
  91. </core-header-panel>
  92. <div id="div" tool>Logiflex Mobile | Sistema de Gestión de Recursos</div>
  93. <section id="section"></section>
  94. <section id="section1"></section>
  95. <section id="section2" elevation>hola</section>
  96. <core-icon icon="category-icons:food" id="core_icon" designmeta="topeka-icon"></core-icon>
  97. </core-scaffold>
  98. </template>
  99.  
  100. <script>
  101.  
  102. Polymer({
  103.  
  104. });
  105.  
  106. </script>
  107.  
  108. </polymer-element><topeka-app selected="profile" disableleaderboard id="topeka_app" categories="[]" class="drag-element" vertical layout></topeka-app>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement