Advertisement
Guest User

Untitled

a guest
Jul 29th, 2015
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.04 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="../paper-tabs/paper-tabs.html">
  5. <link rel="import" href="../paper-tabs/paper-tab.html">
  6.  
  7. <polymer-element name="my-element">
  8.  
  9. <template>
  10. <style>
  11. :host {
  12. position: absolute;
  13. width: 100%;
  14. height: 100%;
  15. box-sizing: border-box;
  16. background-color: rgb(242, 242, 242);
  17. }
  18. #core_header_panel {
  19. width: 100%;
  20. height: 100%;
  21. left: -20px;
  22. top: 0px;
  23. position: absolute;
  24. }
  25. #section {
  26. height: 100%;
  27. width: 100%;
  28. left: -30px;
  29. top: 0px;
  30. position: relative;
  31. background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230));
  32. }
  33. #core_card {
  34. position: absolute;
  35. width: 17%;
  36. height: 17%;
  37. border-radius: 2px;
  38. box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
  39. left: 22.5%;
  40. top: 45%;
  41. background-color: rgb(255, 255, 255);
  42. }
  43. #core_card1 {
  44. width: 17%;
  45. height: 17%;
  46. border-radius: 2px;
  47. box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
  48. left: 44.5%;
  49. top: 45%;
  50. position: absolute;
  51. background-color: rgb(255, 255, 255);
  52. }
  53. #core_card2 {
  54. position: absolute;
  55. width: 17%;
  56. height: 17%;
  57. border-radius: 2px;
  58. box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
  59. left: 66.5%;
  60. top: 45%;
  61. background-color: rgb(255, 255, 255);
  62. }
  63. #core_card3 {
  64. position: absolute;
  65. width: 17%;
  66. height: 17%;
  67. border-radius: 2px;
  68. box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
  69. left: 66.5%;
  70. top: 25%;
  71. background-color: rgb(255, 255, 255);
  72. }
  73. #core_card4 {
  74. position: absolute;
  75. width: 17%;
  76. height: 17%;
  77. border-radius: 2px;
  78. box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
  79. left: 44.5%;
  80. top: 25%;
  81. background-color: rgb(255, 255, 255);
  82. }
  83. #core_card5 {
  84. position: absolute;
  85. width: 17%;
  86. height: 17%;
  87. border-radius: 2px;
  88. box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
  89. left: 22.5%;
  90. top: 25%;
  91. background-color: rgb(255, 255, 255);
  92. }
  93. #paper_tabs {
  94. background-color: rgb(0, 188, 212);
  95. }
  96. </style>
  97. <core-header-panel mode="standard" id="core_header_panel">
  98. <paper-tabs selected="1" selectedindex="1" id="paper_tabs" horizontal center layout>
  99. <paper-tab id="paper_tab" inline flex center-center horizontal layout>INICIO</paper-tab>
  100. <paper-tab id="paper_tab1" inline flex center-center horizontal layout active>ACERCA DE MCCANN</paper-tab>
  101. <paper-tab id="paper_tab2" inline flex center-center horizontal layout>SER PROVEEDOR</paper-tab>
  102. <paper-tab id="paper_tab3" inline flex center-center horizontal layout>HERRAMIENTAS</paper-tab>
  103. <paper-tab id="paper_tab4" inline flex center-center horizontal layout>NOTICIAS Y AVISOS</paper-tab>
  104. </paper-tabs>
  105. <core-card id="core_card3" layout vertical class="cards_logos"></core-card>
  106. <core-card id="core_card2" layout vertical class="cards_logos"></core-card>
  107. <core-card id="core_card4" layout vertical class="cards_logos"></core-card>
  108. <core-card id="core_card1" class="cards_logos" horizontal layout></core-card>
  109. <core-card id="core_card5" layout vertical class="cards_logos"></core-card>
  110. <core-card id="core_card" layout vertical class="cards_logos"></core-card>
  111. </core-header-panel>
  112. </template>
  113.  
  114. <script>
  115.  
  116. Polymer({
  117.  
  118. });
  119.  
  120. </script>
  121.  
  122. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement