Advertisement
Guest User

Untitled

a guest
May 6th, 2015
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. <link rel="import" href="../core-icon-button/core-icon-button.html">
  2. <link rel="import" href="../core-toolbar/core-toolbar.html">
  3. <link rel="import" href="../core-header-panel/core-header-panel.html">
  4. <link rel="import" href="../notification-elements/notification-alert.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. #core_header_panel {
  17. width: 1130px;
  18. height: 680px;
  19. left: 0px;
  20. top: 0px;
  21. position: absolute;
  22. }
  23. #core_toolbar {
  24. color: rgb(255, 255, 255);
  25. background-color: rgb(79, 125, 201);
  26. }
  27. #section {
  28. height: 100%;
  29. position: absolute;
  30. top: 0px;
  31. left: 0px;
  32. width: 100%;
  33. background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230));
  34. }
  35. #notification_alert {
  36. left: 620px;
  37. top: 526px;
  38. position: absolute;
  39. }
  40. </style>
  41. <core-header-panel mode="standard" id="core_header_panel" flex>
  42. <core-toolbar id="core_toolbar">
  43. <core-icon-button icon="menu" id="core_icon_button"></core-icon-button>
  44. <div id="div">Header</div>
  45. </core-toolbar>
  46. <section id="section">
  47. <notification-alert message="Hi there!" icon="icon.png" name="notification" id="notification_alert"></notification-alert>
  48. </section>
  49. </core-header-panel>
  50. </template>
  51.  
  52. <script>
  53.  
  54. Polymer({
  55.  
  56. });
  57.  
  58. </script>
  59.  
  60. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement