Advertisement
Guest User

Untitled

a guest
May 25th, 2015
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. <link rel="import" href="../topeka-elements/theme.html">
  2. <link rel="import" href="../topeka-elements/topeka-resources.html">
  3. <link rel="import" href="../topeka-elements/topeka-app.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. }
  16. #topeka_app {
  17. width: 300px;
  18. height: 300px;
  19. min-height: 450px;
  20. left: 440px;
  21. top: 100px;
  22. position: absolute;
  23. }
  24. #core_drawer_panel {
  25. position: absolute;
  26. top: 100px;
  27. right: 0px;
  28. bottom: 0px;
  29. left: 420px;
  30. }
  31. #section {
  32. box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
  33. background-color: rgb(250, 250, 250);
  34. }
  35. #section1 {
  36. height: 100%;
  37. box-sizing: border-box;
  38. background-color: rgb(221, 221, 221);
  39. }
  40. </style>
  41. <topeka-app id="topeka_app"></topeka-app>
  42. <core-drawer-panel id="core_drawer_panel">
  43. <section id="section" drawer></section>
  44. <section id="section1" main></section>
  45. </core-drawer-panel>
  46. </template>
  47.  
  48. <script>
  49.  
  50. Polymer({
  51.  
  52. });
  53.  
  54. </script>
  55.  
  56. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement