Advertisement
Guest User

Untitled

a guest
May 30th, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 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-tooltip/core-tooltip.html">
  4. <link rel="import" href="../core-menu-button/core-menu-button.html">
  5. <link rel="import" href="../core-icons/core-icons.html">
  6. <link rel="import" href="../core-item/core-item.html">
  7.  
  8. <polymer-element name="my-element">
  9.  
  10. <template>
  11. <core-toolbar id="core_toolbar">
  12. <core-icon-button icon="menu" id="core_icon_button"></core-icon-button>
  13. <div id="div" flex>Sua Empresa</div>
  14. </core-toolbar>
  15. <style>
  16. :host {
  17. position: absolute;
  18. width: 100%;
  19. height: 100%;
  20. box-sizing: border-box;
  21. }
  22. #topeka_app2 {
  23. width: 300px;
  24. height: 300px;
  25. min-height: 450px;
  26. left: 930px;
  27. top: 280px;
  28. }
  29. #core_toolbar {
  30. right: 0px;
  31. left: -10px;
  32. color: rgb(255, 255, 255);
  33. fill: rgb(255, 255, 255);
  34. top: 0px;
  35. position: absolute;
  36. background-color: rgb(79, 125, 201);
  37. }
  38. #core_menu_button {
  39. left: 560px;
  40. top: 110px;
  41. position: absolute;
  42. }
  43. #section {
  44. left: 480px;
  45. top: 360px;
  46. position: absolute;
  47. }
  48. #section1 {
  49. left: 630px;
  50. top: 390px;
  51. position: absolute;
  52. }
  53. #section2 {
  54. left: 720px;
  55. top: 400px;
  56. position: absolute;
  57. }
  58. #core_selector {
  59. width: 100%;
  60. height: 50px;
  61. left: 690px;
  62. top: 430px;
  63. position: absolute;
  64. }
  65. #core_tooltip {
  66. left: 650px;
  67. top: 350px;
  68. position: absolute;
  69. }
  70. </style>
  71. <section id="section"></section>
  72. <section id="section1"></section>
  73. <section id="section2"></section>
  74. <core-selector selected="0" id="core_selector"></core-selector>
  75. <core-tooltip label="I'm a tooltip" id="core_tooltip">
  76. </core-tooltip>
  77. <core-menu-button opened id="core_menu_button" icon="more-vert" selected="0" relative>
  78. <core-item id="core_item2" icon="content-cut" label="Cut" horizontal center layout></core-item>
  79. <core-item id="core_item3" icon="content-copy" label="Copy" horizontal center layout></core-item>
  80. <core-item id="core_item4" icon="content-paste" label="Paste" horizontal center layout></core-item>
  81. </core-menu-button>
  82. </template>
  83.  
  84. <script>
  85.  
  86. Polymer({
  87.  
  88. });
  89.  
  90. </script>
  91.  
  92. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement