Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 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="../paper-input/paper-input.html">
  5.  
  6. <polymer-element name="vetdosecalc">
  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: 300px;
  18. height: 400px;
  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: 1000px;
  29. background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230));
  30. }
  31. #paper_input {
  32. left: 78px;
  33. top: 10px;
  34. position: absolute;
  35. }
  36. </style>
  37. <core-header-panel mode="standard" id="core_header_panel">
  38. <core-toolbar id="core_toolbar">
  39. <core-icon-button icon="menu" id="core_icon_button"></core-icon-button>
  40. <paper-input label="Weight (kg)" id="paper_input"></paper-input>
  41. </core-toolbar>
  42. <section id="section">
  43. <table>
  44. <tr>
  45. <td>Butorphanol</td>
  46. <td>2</td>
  47. <td>4</td>
  48. </tr>
  49. </table>
  50. </section>
  51. </core-header-panel>
  52. </template>
  53.  
  54. <script>
  55.  
  56. Polymer({
  57.  
  58. });
  59.  
  60. </script>
  61.  
  62. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement