products.css.scss 766 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. // Place all the styles related to the Products controller here.
  2. // They will automatically be included in application.css.
  3. // You can use Sass (SCSS) here: http://sass-lang.com/
  4. .products {
  5. table {
  6. border-collapse: collapse;
  7. }
  8. table tr td {
  9. padding: 5px;
  10. vertical-align: top;
  11. }
  12. .list_image {
  13. width: 60px;
  14. height: 70px;
  15. }
  16. .list_description {
  17. width: 60%;
  18. dl {
  19. margin: 0;
  20. }
  21. dt {
  22. color: #244;
  23. font-weight: bold;
  24. font-size: larger;
  25. }
  26. dd {
  27. margin: 0;
  28. }
  29. }
  30. .list_actions {
  31. font-size: x-small;
  32. text-align: right;
  33. padding-left: 1em;
  34. }
  35. .list_line_even {
  36. background: #e0f8f8;
  37. }
  38. .list_line_odd {
  39. background: #f8b0f8;
  40. }
  41. }