Advertisement
Guest User

Untitled

a guest
May 27th, 2015
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. <link rel="import" href="../topeka-elements/category-images.html">
  2. <link rel="import" href="../core-icon/core-icon.html">
  3. <link rel="import" href="../cool-clock/cool-clock.html">
  4. <link rel="import" href="../core-icons/core-icons.html">
  5. <link rel="import" href="../core-icons/av-icons.html">
  6. <link rel="import" href="../paper-fab/paper-fab.html">
  7.  
  8. <polymer-element name="my-element">
  9.  
  10. <template>
  11. <style>
  12. :host {
  13. position: absolute;
  14. width: 100%;
  15. height: 100%;
  16. box-sizing: border-box;
  17. }
  18. #section {
  19. box-sizing: border-box;
  20. width: 420px;
  21. height: 582px;
  22. left: 250px;
  23. top: 40px;
  24. position: absolute;
  25. }
  26. #section1 {
  27. background-color: rgb(255, 255, 141);
  28. }
  29. #core_icon {
  30. height: 256px;
  31. width: 256px;
  32. z-index: 100;
  33. }
  34. #div {
  35. box-sizing: border-box;
  36. position: relative;
  37. height: 80px;
  38. background-color: rgb(255, 235, 59);
  39. padding: 24px;
  40. color: rgb(255, 255, 255);
  41. font-size: 32px;
  42. opacity: 1;
  43. }
  44. #div2 {
  45. position: absolute;
  46. color: rgb(255, 255, 255);
  47. bottom: 50px;
  48. right: 24px;
  49. }
  50. #paper_fab {
  51. background-color: rgb(255, 64, 129);
  52. }
  53. #input {
  54. padding: 15px;
  55. }
  56. </style>
  57. <section id="section" layout vertical>
  58. <section id="section1" class="top" flex layout horizontal center center-justified hero hero-id="top">
  59. <core-icon icon="category-images:knowledge" id="core_icon" cross-fade-delayed designmeta="topeka-image"></core-icon>
  60. <cool-clock id="cool_clock"></cool-clock>
  61. </section>
  62. <div id="div" class="bottom" hero hero-id="bottom">
  63. <span id="span">General Knowledge</span>
  64. </div>
  65. <div id="div1" hero class="dummy"></div>
  66. <div id="div2" class="fab fab-0">
  67. <paper-fab icon="av:play-arrow" id="paper_fab" cross-fade-delayed></paper-fab>
  68. </div>
  69. </section>
  70. </template>
  71.  
  72. <script>
  73.  
  74. Polymer({
  75.  
  76. });
  77.  
  78. </script>
  79.  
  80. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement