Advertisement
Guest User

Untitled

a guest
Oct 9th, 2015
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. <link rel="import" href="../polymer/polymer.html">
  2.  
  3. <polymer-element name="my-element">
  4.  
  5. <template>
  6. <style>
  7. #design_host {
  8. position: absolute;
  9. width: 100%;
  10. height: 100%;
  11. box-sizing: border-box;
  12. }
  13. #section2 {
  14. box-sizing: border-box;
  15. width: 420px;
  16. height: 630px;
  17. background-color: rgb(255, 255, 141);
  18. left: 400px;
  19. top: 40px;
  20. position: absolute;
  21. }
  22. #div3 {
  23. box-sizing: border-box;
  24. position: relative;
  25. height: 150px;
  26. width: 150px;
  27. background-color: rgb(255, 235, 59);
  28. color: rgb(255, 255, 255);
  29. font-size: 100px;
  30. }
  31. </style>
  32. <section id="section" vertical layout>
  33. <div id="div1" class="dummy" hero></div>
  34. <div id="div2" class="fab fab-0">
  35. </div>
  36. </section>
  37. <section id="section2" center-justified center vertical layout>
  38. <div id="div3" center-justified center vertical layout hero>
  39. <span id="span1">+8</span>
  40. </div>
  41. </section>
  42. </template>
  43.  
  44. <script>
  45.  
  46. Polymer({
  47.  
  48. });
  49.  
  50. </script>
  51.  
  52. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement