Advertisement
Guest User

Untitled

a guest
Jan 25th, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. <link rel="import" href="../paper-tabs/paper-tabs.html">
  2. <link rel="import" href="../paper-tabs/paper-tab.html">
  3.  
  4. <polymer-element name="my-element">
  5.  
  6. <template>
  7. <style>
  8. :host {
  9. position: absolute;
  10. width: 100%;
  11. height: 100%;
  12. box-sizing: border-box;
  13. }
  14. #section {
  15. width: 420px;
  16. height: 630px;
  17. border: 5px solid rgb(204, 204, 204);
  18. left: 260px;
  19. top: 0px;
  20. position: absolute;
  21. }
  22. #paper_tabs {
  23. color: rgb(255, 255, 255);
  24. box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px;
  25. background-color: rgb(0, 188, 212);
  26. }
  27. #section1 {
  28. background-color: rgb(223, 217, 217);
  29. }
  30. </style>
  31. <section id="section" layout vertical>
  32. <paper-tabs selected="0" selectedindex="0" id="paper_tabs" horizontal center layout>
  33. <paper-tab id="paper_tab" inline flex center-center horizontal layout active>SCORES</paper-tab>
  34. <paper-tab id="paper_tab1" inline flex center-center horizontal layout>RANKINGS</paper-tab>
  35. </paper-tabs>
  36. <section id="section1" flex relative>
  37. </section>
  38. </section>
  39. </template>
  40.  
  41. <script>
  42.  
  43. Polymer({
  44.  
  45. });
  46.  
  47. </script>
  48.  
  49. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement