store.css.scss 952 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // Place all the styles related to the Store controller here.
  2. // They will automatically be included in application.css.
  3. // You can use Sass (SCSS) here: http://sass-lang.com/
  4. .store {
  5. h1 {
  6. margin: 0;
  7. padding-bottom: 0.5em;
  8. font: 150% sans-serif;
  9. color: #226;
  10. border-bottom: 3px dotted #77d;
  11. }
  12. /* An entry in the store catalog */
  13. .entry {
  14. overflow: auto;
  15. margin-top: 1em;
  16. border-bottom: 1px dotted #77d;
  17. min-height: 100px;
  18. img {
  19. width: 80px;
  20. margin-right: 5px;
  21. margin-bottom: 5px;
  22. position: absolute;
  23. }
  24. h3 {
  25. font-size: 120%;
  26. font-family: sans-serif;
  27. margin-left: 100px;
  28. margin-top: 0;
  29. margin-bottom: 2px;
  30. color: #227;
  31. }
  32. p, div.price_line {
  33. margin-left: 100px;
  34. margin-top: 0.5em;
  35. margin-bottom: 0.8em;
  36. }
  37. .price {
  38. color: #44a;
  39. font-weight: bold;
  40. margin-right: 3em;
  41. }
  42. }
  43. }