Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. <link rel="import" href="../paper-slider/paper-slider.html">
  2. <link rel="import" href="../core-icons/core-icons.html">
  3. <link rel="import" href="../paper-icon-button/paper-icon-button.html">
  4. <link rel="import" href="../core-drawer-panel/core-drawer-panel.html">
  5.  
  6. <polymer-element name="my-element">
  7.  
  8. <template>
  9. <style>
  10. :host {
  11. position: absolute;
  12. width: 100%;
  13. height: 100%;
  14. box-sizing: border-box;
  15. top: 0px;
  16. left: 0px;
  17. }
  18. #paper_slider {
  19. left: 90px;
  20. top: 120px;
  21. position: absolute;
  22. }
  23. #paper_slider1 {
  24. left: 70px;
  25. top: 50px;
  26. position: absolute;
  27. }
  28. #paper_icon_button {
  29. left: 90px;
  30. top: 80px;
  31. position: absolute;
  32. }
  33. #core_drawer_panel {
  34. position: absolute;
  35. top: 120px;
  36. right: 0px;
  37. bottom: 0px;
  38. left: 40px;
  39. }
  40. #section {
  41. box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
  42. left: -156px;
  43. top: -10px;
  44. position: absolute;
  45. background-color: rgb(250, 250, 250);
  46. }
  47. #section1 {
  48. height: 100%;
  49. box-sizing: border-box;
  50. width: 20%;
  51. background-color: rgb(221, 221, 221);
  52. }
  53. </style>
  54. <paper-slider id="paper_slider"></paper-slider>
  55. <paper-slider id="paper_slider1"></paper-slider>
  56. <paper-icon-button icon="menu" active pressed disabled toggle id="paper_icon_button"></paper-icon-button>
  57. <core-drawer-panel transition selected="main" id="core_drawer_panel" touch-action>
  58. <section id="section1" main>
  59. <section id="section" drawer></section>
  60. </section>
  61. </core-drawer-panel>
  62. </template>
  63.  
  64. <script>
  65.  
  66. Polymer({
  67.  
  68. });
  69.  
  70. </script>
  71.  
  72. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement