styles.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. body {
  2. background-color: rgb(168, 168, 170);
  3. }
  4. .wrapperAuth{
  5. display: flex;
  6. flex-wrap: wrap;
  7. width: 100%;
  8. margin: 0 auto;
  9. margin-bottom: 10px;
  10. }
  11. .login , .register , .logout {
  12. width: 100%;
  13. margin-bottom: 10px;
  14. background-color: rgb(131, 126, 126);
  15. }
  16. .status{
  17. font-size: 30px;
  18. }
  19. .categoriesBtn , .goodsBtn , .ordersBtn{
  20. background-color: yellow;
  21. color: rgb(8, 92, 15);
  22. font-size: 30px;
  23. margin-bottom: 10px;
  24. }
  25. .renderList{
  26. background-color: rgb(236, 236, 146);
  27. color: rgb(61, 60, 60);
  28. font-size: 30px;
  29. width: 60%;
  30. margin: 0 auto;
  31. padding: 15px;
  32. border-radius: 10px;
  33. list-style: none;
  34. }
  35. span {
  36. margin-right: 10px;
  37. }
  38. .sideBar{
  39. width: 20%;
  40. display: flex;
  41. flex-wrap: wrap;
  42. justify-content: center;
  43. flex-direction: column;
  44. margin-bottom: 20px;
  45. }
  46. input {
  47. width: 100%;
  48. margin-bottom: 10px;
  49. }
  50. .btnDetail{
  51. border-radius: 50%;
  52. background-color: rgb(48, 194, 251);
  53. height: 60px;
  54. }
  55. .btnWrapper{
  56. display: flex;
  57. flex-direction: column;
  58. }