Advertisement
Guest User

Untitled

a guest
Apr 25th, 2015
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 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. :host {
  8. position: absolute;
  9. width: 100%;
  10. height: 100%;
  11. box-sizing: border-box;
  12. }
  13. #section {
  14. box-sizing: border-box;
  15. width: 420px;
  16. height: 630px;
  17. left: 110px;
  18. top: 20px;
  19. position: absolute;
  20. background-color: rgb(255, 255, 141);
  21. }
  22. #div {
  23. box-sizing: border-box;
  24. position: relative;
  25. height: 150px;
  26. width: 150px;
  27. color: rgb(255, 255, 255);
  28. font-size: 100px;
  29. background-color: rgb(255, 235, 59);
  30. }
  31. </style>
  32. <section id="section" layout vertical center center-justified>
  33. <div id="div" hero layout vertical center center-justified>
  34. <span id="span">+8</span>
  35. </div>
  36. </section>
  37. </template>
  38.  
  39. <script>
  40.  
  41. Polymer({
  42.  
  43. });
  44.  
  45. </script>
  46.  
  47. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement