App.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. .App {
  2. font-family: Georgia sans-serif;
  3. padding: 0;
  4. margin: 0;
  5. display: flex;
  6. flex-direction: column;
  7. .main{
  8. display: flex;
  9. text-align: center;
  10. }
  11. }
  12. .aside{
  13. min-width: 20%;
  14. border-right: 1px solid lightgrey;
  15. display: flex;
  16. justify-content: start;
  17. flex-direction: column;
  18. align-items: start;
  19. margin: 5px;
  20. text-align: start;
  21. ul{
  22. list-style: none;
  23. margin: 0;
  24. padding: 0;
  25. }
  26. li{
  27. margin: 5px;
  28. }
  29. }
  30. .header{
  31. display: flex;
  32. justify-content: space-between;
  33. align-items: center;
  34. border-bottom: 1px solid lightgrey;
  35. .Logo{
  36. margin-left: 5%;
  37. }
  38. .koshikCounter{
  39. margin-right: 5%;
  40. }
  41. img{
  42. height: 40px;
  43. }
  44. }
  45. .Cart{
  46. margin: 10px;
  47. display: flex;
  48. justify-content: center;
  49. align-items: center;
  50. .wrapperForName{
  51. display: flex;
  52. flex-direction: column;
  53. .name{
  54. margin: 10px;
  55. }
  56. }
  57. .wrapperForCount{
  58. display: flex;
  59. flex-direction: column;
  60. .count{
  61. margin: 10px;
  62. }
  63. }
  64. button{
  65. margin: 10px;
  66. }
  67. }
  68. .Content{
  69. display: flex;
  70. justify-content: center;
  71. align-items: center;
  72. flex-direction: column;
  73. ul, li{
  74. list-style: none;
  75. margin: 0;
  76. padding: 0;
  77. }
  78. .GoodCard{
  79. display: flex;
  80. flex-direction: column;
  81. align-items: center;
  82. justify-content: center;
  83. h2{
  84. margin: 5%;
  85. }
  86. strong{
  87. margin: 2%;
  88. }
  89. }
  90. img{
  91. height: 80px;
  92. }
  93. }
  94. .Footer{
  95. background-color: rebeccapurple;
  96. height: 10%;
  97. border-top: 1px solid lightgrey;
  98. img{
  99. height: 40px;
  100. margin: 5px;
  101. }
  102. }