Advertisement
Guest User

Untitled

a guest
May 27th, 2015
373
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. <link rel="import" href="../polymer/polymer.html">
  2.  
  3. <polymer-element name="listas-page">
  4.  
  5. <template>
  6. <style>
  7. #section2 {
  8. box-sizing: border-box;
  9. width: 100%;
  10. height: 100%;
  11. padding-left: 20px;
  12. padding-right: 40px;
  13. padding-bottom: 40px;
  14. }
  15. #sub_header {
  16. color: rgb(0, 121, 107);
  17. font-family: 'Roboto Slab', serif;
  18. font-weight: 400;
  19. font-size: 18px;
  20. padding: 15px;
  21. -webkit-user-select: none;
  22. }
  23. #group_recibidos, #group_procesados, #group_despachados {
  24. width: 30%;
  25. height: 100%;
  26. }
  27. .shadow_list {
  28. position: relative;
  29. width: 100%;
  30. height: 100%;
  31. }
  32. .pedidos_list {
  33. width: 100%;
  34. height: 100%;
  35. background-color: rgb(250, 250, 250);
  36. }
  37. </style>
  38. <section id="section2" main horizontal justified layout fit>
  39. <div id="group_recibidos" vertical layout center>
  40. <sub_header id="sub_header">Pedidos Recibidos</sub_header>
  41. <paper-shadow id="paper_shadow2" z="2" class="shadow_list" vertical layout>
  42. <core-list id="recibidos" class="pedidos_list" vertical layout></core-list>
  43. </paper-shadow>
  44. </div>
  45. <div id="group_procesados" vertical layout center>
  46. <sub_header id="sub_header">Pedidos Procesados</sub_header>
  47. <paper-shadow id="paper_shadow" z="2" class="shadow_list" vertical layout>
  48. <core-list id="procesados" class="pedidos_list" vertical layout></core-list>
  49. </paper-shadow>
  50. </div>
  51. <div id="group_despachados" vertical layout center>
  52. <sub_header id="sub_header">Pedidos Despachados</sub_header>
  53. <paper-shadow id="paper_shadow1" z="2" class="shadow_list" vertical layout>
  54. <core-list id="despachados" class="pedidos_list" vertical layout></core-list>
  55. </paper-shadow>
  56. </div>
  57. </section>
  58. </template>
  59.  
  60. <script>
  61.  
  62. Polymer({
  63.  
  64. });
  65.  
  66. </script>
  67.  
  68. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement