Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.99 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="../topeka-elements/category-images.html">
  4. <link rel="import" href="../core-icon/core-icon.html">
  5. <link rel="import" href="../core-icons/core-icons.html">
  6. <link rel="import" href="../core-icons/av-icons.html">
  7. <link rel="import" href="../paper-fab/paper-fab.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_toolbar {
  20. right: 0px;
  21. left: 0px;
  22. color: rgb(255, 255, 255);
  23. fill: rgb(255, 255, 255);
  24. top: 0px;
  25. position: absolute;
  26. background-color: rgb(79, 125, 201);
  27. }
  28. #section {
  29. left: 20px;
  30. top: 50px;
  31. position: absolute;
  32. }
  33. #section1 {
  34. left: 0px;
  35. top: 20px;
  36. position: absolute;
  37. }
  38. #section2 {
  39. left: 20px;
  40. top: 170px;
  41. position: absolute;
  42. }
  43. #section3 {
  44. box-sizing: border-box;
  45. width: 420px;
  46. height: 582px;
  47. left: 0px;
  48. top: 60px;
  49. position: absolute;
  50. }
  51. #section4 {
  52. background-color: rgb(255, 255, 141);
  53. }
  54. #core_icon {
  55. height: 256px;
  56. width: 256px;
  57. z-index: 100;
  58. }
  59. #div {
  60. box-sizing: border-box;
  61. position: relative;
  62. height: 80px;
  63. padding: 24px;
  64. color: rgb(255, 255, 255);
  65. font-size: 32px;
  66. background-color: rgb(255, 235, 59);
  67. }
  68. #div2 {
  69. position: absolute;
  70. color: rgb(255, 255, 255);
  71. bottom: 50px;
  72. right: 24px;
  73. }
  74. #paper_fab {
  75. background-color: rgb(255, 64, 129);
  76. }
  77. #section5 {
  78. box-sizing: border-box;
  79. width: 420px;
  80. height: 582px;
  81. left: 1230px;
  82. top: 580px;
  83. }
  84. </style>
  85. <core-toolbar id="core_toolbar">
  86. <core-icon-button icon="menu" id="core_icon_button"></core-icon-button>
  87. </core-toolbar>
  88. <section id="section2">
  89. <section id="section1">
  90. <section id="section" layout horizontal center center-justified>
  91. </section>
  92. </section>
  93. </section>
  94. <section id="section3" layout vertical>
  95. <section id="section4" class="top" flex layout horizontal center center-justified hero hero-id="top">
  96. <core-icon icon="category-images:knowledge" id="core_icon" cross-fade-delayed designmeta="topeka-image"></core-icon>
  97. </section>
  98. <div id="div" class="bottom" hero hero-id="bottom">
  99. <span id="span">General Knowledge</span>
  100. </div>
  101. <div id="div1" hero class="dummy"></div>
  102. <div id="div2" class="fab fab-0">
  103. <paper-fab icon="av:play-arrow" id="paper_fab" cross-fade-delayed></paper-fab>
  104. </div>
  105. </section>
  106. </template>
  107.  
  108. <script>
  109.  
  110. Polymer({
  111.  
  112. });
  113.  
  114. </script>
  115.  
  116. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement