depot.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /* Global styles */
  2. #store #notice {
  3. color: #000;
  4. border: 2px solid red;
  5. padding: 1em;
  6. margin-bottom: 2em;
  7. background-color: #f0f0f0;
  8. font: bold smaller sans-serif;
  9. }
  10. #store h1 {
  11. font: 150% sans-serif;
  12. color: #226;
  13. border-bottom: 3px dotted #77d;
  14. }
  15. /* Styles for products/index */
  16. #product_list table {
  17. border-collapse: collapse;
  18. }
  19. #product_list table tr td {
  20. padding: 5px;
  21. vertical-align: top;
  22. }
  23. #product_list .list_image {
  24. width: 60px;
  25. height: 70px;
  26. }
  27. #product_list .list_description {
  28. width: 60%;
  29. }
  30. #product_list .list_description dl {
  31. margin: 0;
  32. }
  33. #product_list .list_description dt {
  34. color: #244;
  35. font-weight: bold;
  36. font-size: larger;
  37. }
  38. #product_list .list_description dd {
  39. margin: 0;
  40. }
  41. #product_list .list_actions {
  42. font-size: x-small;
  43. text-align: right;
  44. padding-left: 1em;
  45. }
  46. #product_list .list_line_even {
  47. background: #e0f8f8;
  48. }
  49. #product_list .list_line_odd {
  50. background: #f8b0f8;
  51. }
  52. /* An entry in the store catalog */
  53. #store .entry {
  54. overflow: auto;
  55. margin-top: 1em;
  56. border-bottom: 1px dotted #77d;
  57. }
  58. #store .title {
  59. font-size: 120%;
  60. font-family: sans-serif;
  61. }
  62. #store .entry img {
  63. width: 80px;
  64. margin-right: 5px;
  65. margin-bottom: 5px;
  66. float: left;
  67. }
  68. #store .entry h3 {
  69. margin-top: 0;
  70. margin-bottom: 2px;
  71. color: #227;
  72. }
  73. #store .entry p {
  74. margin-top: 0.5em;
  75. margin-bottom: 0.8em;
  76. }
  77. #store .entry .price_line {
  78. clear: both;
  79. margin-bottom: 0.5em;
  80. }
  81. #store .entry .add_to_cart {
  82. position: relative;
  83. }
  84. #store .entry .price {
  85. color: #44a;
  86. font-weight: bold;
  87. margin-right: 2em;
  88. }