App.scss 1.9 KB

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