style.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. body {
  2. font-family: Georgia sans-serif;
  3. padding: 0;
  4. margin: 0;
  5. }
  6. #mainContainer {
  7. display: flex;
  8. }
  9. #aside {
  10. min-width: 20%;
  11. border-right: 1px solid lightgrey;
  12. }
  13. #aside > a {
  14. display: flex;
  15. justify-content: start;
  16. flex-direction: column;
  17. align-items: start;
  18. margin: 5px;
  19. }
  20. #main {
  21. display: flex;
  22. justify-content: center;
  23. flex-direction: column;
  24. align-items: center;
  25. text-align: center;
  26. width: 80%;
  27. }
  28. .loginInput, .pswInput {
  29. background-color: #fff;
  30. text-align: center;
  31. margin: 5px;
  32. width: 280px;
  33. height: 40px;
  34. font-size: 16px;
  35. border: 1px solid #ccc;
  36. }
  37. .buttonSend, .buttonBuy {
  38. margin: 10px;
  39. width: 280px;
  40. height: 40px;
  41. background-color: #792c9b;
  42. color: #fff;
  43. font-weight: 700;
  44. text-transform: uppercase;
  45. cursor: pointer;
  46. border: none;
  47. }
  48. .divQuestion {
  49. margin: 10px;
  50. color: grey;
  51. }
  52. .link {
  53. font-size: 14px;
  54. }
  55. .buttonBuy {
  56. height: 20px;
  57. width: 100px;
  58. }
  59. #header {
  60. height: 40px;
  61. border-bottom: 1px solid lightgrey;
  62. color: white;
  63. background-color: #f1dcff;
  64. display: flex;
  65. justify-content: space-around;
  66. align-items: center;
  67. }
  68. .cart{
  69. margin-right: 5%;
  70. width: 80px;
  71. }
  72. .cartImg{
  73. width: 40px;
  74. height: 40px;
  75. margin: 15px;
  76. }
  77. .enterToPrivate{
  78. margin-right: 5%;
  79. }
  80. .card{
  81. display: flex;
  82. justify-content: center;
  83. align-items: center;
  84. flex-direction: column;
  85. }
  86. .nameGategory{
  87. color: black;
  88. }
  89. .wrapperForCart{
  90. display: flex;
  91. justify-content: center;
  92. align-items: center;
  93. flex-direction: row;
  94. }
  95. .wrapperForCounter{
  96. display: flex;
  97. flex-direction: row;
  98. justify-content: center;
  99. align-items: center;
  100. margin: 10px;
  101. }
  102. .buttonDeleteGood{
  103. border: none;
  104. background-color: white;
  105. font-size: 16px;
  106. cursor: pointer;
  107. }
  108. .inputChangeNumber{
  109. width: 40px;
  110. }
  111. .divDashboardOrders{
  112. display: flex;
  113. justify-content: center;
  114. flex-direction: row;
  115. align-items: center;
  116. font-size: 18px;
  117. font-weight: 400;
  118. margin-left: 10px;
  119. border: 1px solid #792c9b;
  120. height: 121px;
  121. width: 400px;
  122. }
  123. .imgGood{
  124. width: 80px;
  125. height: 80px;
  126. }
  127. .divDescriptionOrder{
  128. display: flex;
  129. flex-direction: column;
  130. align-items: center;
  131. justify-content: start;
  132. margin: 10px;
  133. }
  134. .buttonLogOff{
  135. margin-left: 50px;
  136. width: 100px;
  137. height: 40px;
  138. background-color: #792c9b;
  139. color: white;
  140. border-radius: 50%;
  141. font-weight: 700;
  142. text-transform: uppercase;
  143. cursor: pointer;
  144. border: none;
  145. }
  146. .wrapperForPrivate{
  147. text-align: center;
  148. display: flex;
  149. justify-content: center;
  150. align-items: center;
  151. }
  152. .wrapperForCharacteristicGood{
  153. display: flex;
  154. flex-direction: column;
  155. align-items: center;
  156. justify-content: start;
  157. margin-top: 15px;
  158. }
  159. .totalDiv{
  160. margin-left: 5px;
  161. }
  162. .divTime{
  163. font-size: 14px;
  164. margin-top: 5px;
  165. }
  166. .divName{
  167. font-size: 18px;
  168. font-style: italic;
  169. font-weight: 700;
  170. }