App.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. .App {
  2. text-align: center;
  3. }
  4. .App-logo {
  5. height: 40vmin;
  6. pointer-events: none;
  7. }
  8. @media (prefers-reduced-motion: no-preference) {
  9. .App-logo {
  10. animation: App-logo-spin infinite 20s linear;
  11. }
  12. }
  13. .App-header {
  14. background-color: #282c34;
  15. min-height: 100vh;
  16. display: flex;
  17. flex-direction: column;
  18. align-items: center;
  19. justify-content: center;
  20. font-size: calc(10px + 2vmin);
  21. color: white;
  22. }
  23. .App-link {
  24. color: #61dafb;
  25. }
  26. @keyframes App-logo-spin {
  27. from {
  28. transform: rotate(0deg);
  29. }
  30. to {
  31. transform: rotate(360deg);
  32. }
  33. }
  34. .header {
  35. padding-bottom: 57px;
  36. }
  37. a {
  38. text-decoration: none;
  39. }
  40. body {
  41. background-color: rgb(9, 6, 12);
  42. }
  43. h1,
  44. h2,
  45. label {
  46. color: white;
  47. }
  48. .avatar {
  49. display: flex;
  50. align-items: center;
  51. justify-content: center;
  52. padding-bottom: 20px;
  53. }
  54. .drop-area {
  55. width: 30vh;
  56. height: 30vh;
  57. border: 5px solid white;
  58. display: flex;
  59. align-items: center;
  60. justify-content: center;
  61. border-radius: 50%;
  62. }
  63. .chatLi {
  64. list-style-type: none;
  65. border-bottom: 2px solid black;
  66. }
  67. .chatPage {
  68. display: flex;
  69. }
  70. .hrefChat {
  71. color: black
  72. }
  73. .chatLi:hover {
  74. background-color: rgb(151, 182, 238);
  75. color: black;
  76. }
  77. .chatAside {
  78. overflow: auto;
  79. padding: 0;
  80. flex-basis: 50%;
  81. background-color: rgb(197, 219, 248);
  82. color: black;
  83. min-height: 92vh;
  84. border-right: 2px solid black;
  85. }
  86. .chatMain {
  87. max-height: 92vh;
  88. min-height: 80vh;
  89. flex-basis: 90%;
  90. display: flex;
  91. flex-direction: column;
  92. }
  93. .msg {
  94. color: white
  95. }
  96. .msgLi {
  97. display: flex;
  98. flex-direction: column;
  99. background-color: white;
  100. border-radius: 25px;
  101. max-width: 80%;
  102. border: 2px black solid;
  103. }
  104. .msgOwner {
  105. color: red;
  106. }
  107. .img-label {
  108. padding-top: 100px;
  109. max-width: 400px;
  110. max-height: 600px;
  111. }
  112. .divHome {
  113. height: 100vh
  114. }
  115. .linkToCreate {
  116. z-index: 1;
  117. background-color: #0d6efd;
  118. max-width: 100%;
  119. border-radius: 0;
  120. color: black;
  121. height: 50px;
  122. font-weight: bolder
  123. }
  124. .linkToCreate:hover {
  125. color: black;
  126. }
  127. .sendMsg {
  128. z-index: 1;
  129. border-radius: 0;
  130. color: black;
  131. padding: 10px;
  132. font-weight: bolder
  133. }
  134. .msgUl {
  135. display: flex;
  136. flex-direction: column-reverse;
  137. }
  138. .membersChat {
  139. border: 2px solid white;
  140. }
  141. .chatPrewiew {
  142. padding-top: 200px;
  143. }
  144. .dropdown-li {
  145. padding-left: 20px;
  146. }
  147. .home-logo {
  148. padding-top: 100px;
  149. max-width: 400px;
  150. }
  151. .ava {
  152. max-width: 200px;
  153. max-height: 200px;
  154. border-radius: 20%;
  155. padding-bottom: 20px;
  156. }