Advertisement
Guest User

Untitled

a guest
Dec 21st, 2014
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. <link rel="import" href="../core-drawer-panel/core-drawer-panel.html">
  2. <link rel="import" href="../core-icon-button/core-icon-button.html">
  3. <link rel="import" href="../core-toolbar/core-toolbar.html">
  4.  
  5. <polymer-element name="my-element">
  6.  
  7. <template>
  8. <style>
  9. #section {
  10. box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
  11. background-color: rgb(250, 250, 250);
  12. }
  13. #section1 {
  14. height: 100%;
  15. box-sizing: border-box;
  16. background-color: rgb(221, 221, 221);
  17. }
  18. #core_toolbar {
  19. color: rgb(255, 255, 255);
  20. fill: rgb(255, 255, 255);
  21. background-color: rgb(79, 125, 201);
  22. }
  23. </style>
  24. <core-drawer-panel transition selected="main" id="core_drawer_panel" touch-action>
  25. <section id="section" drawer></section>
  26. <section id="section1" main>
  27. <core-toolbar id="core_toolbar">
  28. <core-icon-button icon="menu" id="core_icon_button"></core-icon-button>
  29. <div id="div" flex>Toolbar</div>
  30. </core-toolbar>
  31. </section>
  32. </core-drawer-panel>
  33. </template>
  34.  
  35. <script>
  36.  
  37. Polymer({
  38.  
  39. });
  40.  
  41. </script>
  42.  
  43. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement