store.css.scss 1010 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. //
  33. p, div.price_line {
  34. margin-left: 100px;
  35. margin-top: 0.5em;
  36. margin-bottom: 0.8em;
  37. form, div {
  38. display: inline;
  39. }
  40. }
  41. //
  42. .price {
  43. color: #44a;
  44. font-weight: bold;
  45. margin-right: 3em;
  46. }
  47. }
  48. }