Advertisement
Guest User

Untitled

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