App.css 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573
  1. #root {
  2. padding: 0 15px;
  3. }
  4. .navbar.navbar-light.bg-primary {
  5. width: 1340px;
  6. }
  7. .formContainerLogin,
  8. .formContainer {
  9. display: flex;
  10. flex-direction: column;
  11. max-width: 500px;
  12. margin: 0 auto;
  13. padding-top: 250px;
  14. /* padding-right: 300px; */
  15. }
  16. .formContainer {
  17. padding-top: 100px;
  18. }
  19. .textLogin {
  20. text-align: center;
  21. padding: 10px;
  22. }
  23. .btn-setting.btn.btn-primary {
  24. margin: 20px 0;
  25. width: 100%;
  26. }
  27. .d-flex.loginForm {
  28. display: flex;
  29. flex-direction: column;
  30. }
  31. .registerLink {
  32. text-align: center;
  33. }
  34. .form-control-editing.form-control.fix {
  35. margin-bottom: 20px;
  36. }
  37. .sc-bczRLJ.eHNgUP.validator {
  38. margin-bottom: 20px;
  39. }
  40. .logo {
  41. font-size: 30px;
  42. text-decoration: none;
  43. color: rgb(43, 31, 182);
  44. }
  45. .nav {
  46. text-decoration: none;
  47. font-size: 30px;
  48. }
  49. .profileContainer {
  50. display: flex;
  51. justify-content: center;
  52. }
  53. .loginNickSetting {
  54. text-align: center;
  55. min-width: 500px;
  56. margin: 40px;
  57. }
  58. .passwordSetting {
  59. text-align: center;
  60. min-width: 500px;
  61. margin: 40px;
  62. }
  63. .buttonSetting {
  64. margin: 20px 0;
  65. }
  66. .textProfile {
  67. text-align: center;
  68. }
  69. .small {
  70. width: 132px;
  71. height: 132px;
  72. margin: 0 auto;
  73. overflow: hidden;
  74. border-radius: 50%;
  75. }
  76. .profileStyle {
  77. width: 132px;
  78. height: 132px;
  79. margin-right: 50px;
  80. overflow: hidden;
  81. border-radius: 50%;
  82. }
  83. .forChatHeader {
  84. width: 50px;
  85. height: 50px;
  86. margin: 0 10px;
  87. overflow: hidden;
  88. border-radius: 50%;
  89. }
  90. .smallForChat {
  91. width: 60px;
  92. height: 60px;
  93. margin: 0 10px;
  94. overflow: hidden;
  95. border-radius: 50%;
  96. }
  97. .smallForChat1{
  98. width: 30px;
  99. height: 30px;
  100. margin-right: 10px;
  101. overflow: hidden;
  102. border-radius: 50%;
  103. }
  104. .avatarStub {
  105. width: 60px;
  106. height: 60px;
  107. margin: 0 10px;
  108. overflow: hidden;
  109. border-radius: 50%;
  110. background-color: #0d6efd;
  111. }
  112. .avatarStubChat {
  113. width: 120px;
  114. height: 120px;
  115. margin: 0 10px;
  116. overflow: hidden;
  117. border-radius: 50%;
  118. background-color: #0d6efd;
  119. }
  120. .avatarStubChat1 {
  121. width: 30px;
  122. height: 30px;
  123. margin-right: 10px;
  124. overflow: hidden;
  125. border-radius: 50%;
  126. background-color: #0d6efd;
  127. }
  128. .avatarStubChat2 {
  129. width: 60px;
  130. height: 60px;
  131. margin: 0 10px;
  132. overflow: hidden;
  133. border-radius: 50%;
  134. background-color: #0d6efd;
  135. }
  136. .loginAvatar {
  137. text-align: center;
  138. }
  139. .chatsContainer {
  140. margin: 0;
  141. padding: 0;
  142. min-width: 400px;
  143. min-height: 94vh;
  144. background-color: white;
  145. overflow: auto;
  146. }
  147. .mainContainer {
  148. display: flex;
  149. }
  150. .chatsList {
  151. display: flex;
  152. margin-bottom: 5px;
  153. align-items: center;
  154. text-decoration: none;
  155. max-width: 400px;
  156. padding: 10px;
  157. }
  158. .chatsList:hover {
  159. background-color: lightgray;
  160. }
  161. .search-item:hover {
  162. width: 100%;
  163. background-color: lightgray;
  164. }
  165. .chatsList h1 {
  166. font-size: 1.5rem;
  167. }
  168. .chatAvatarText {
  169. padding: 6px;
  170. color: white;
  171. font-size: 30px;
  172. text-align: center;
  173. }
  174. .chatAvatarTextHeader {
  175. padding: 6px;
  176. color: white;
  177. font-size: 25px;
  178. text-align: center;
  179. order: 10;
  180. }
  181. .chatTitle {
  182. color: black;
  183. }
  184. .stubAvatar {
  185. width: 60px;
  186. height: 60px;
  187. margin: 0 10px;
  188. overflow: hidden;
  189. border-radius: 50%;
  190. }
  191. .stubAvatarHeader {
  192. width: 50px;
  193. height: 50px;
  194. margin: 0 10px;
  195. overflow: hidden;
  196. border-radius: 50%;
  197. }
  198. .burger.navbar-toggler.collapsed {
  199. margin-left: 10px;
  200. background-color: blueviolet;
  201. }
  202. .newChatButton {
  203. padding-top: 5px;
  204. text-decoration: none;
  205. color: white;
  206. text-align: center;
  207. background-color: #0d6efd;
  208. font-size: 30px;
  209. border-radius: 50%;
  210. width: 60px;
  211. height: 60px;
  212. position: fixed;
  213. top: 91vh;
  214. left: 32.5%;
  215. }
  216. .df {
  217. display: flex;
  218. flex-direction: column;
  219. }
  220. .dfb {
  221. display: flex;
  222. justify-content: space-evenly;
  223. }
  224. .p {
  225. color: #0d6efd;
  226. text-align: center;
  227. }
  228. .changepasLink {
  229. padding-top: 20px;
  230. text-decoration: none;
  231. font-size: 20px;
  232. }
  233. .passwordSetting {
  234. padding-top: 100px;
  235. max-width: 400px;
  236. margin: 0 auto;
  237. }
  238. .textProfile {
  239. margin-bottom: 40px;
  240. }
  241. .msgMedia {
  242. max-width: 480px;
  243. border-radius: 10px;
  244. margin: 5px 0;
  245. }
  246. .dropZoneStyle {
  247. padding-left: 10px;
  248. max-width: 500px;
  249. height: 150px;
  250. margin: 0 auto;
  251. }
  252. /* .dropZoneStyle2{
  253. } */
  254. .dropZoneStyle:hover {
  255. cursor: pointer;
  256. }
  257. .dropZoneStyleBr {
  258. padding-left: 10px;
  259. max-width: 500px;
  260. height: 150px;
  261. margin: 0 auto;
  262. border: 1px solid 0d6efd;
  263. }
  264. .inputContainer {
  265. display: flex;
  266. flex-direction: column;
  267. }
  268. .inputContainer label {
  269. margin-bottom: 10px;
  270. color: #0d6efd;
  271. }
  272. .inputContainer input {
  273. min-height: 50px;
  274. padding-left: 10px;
  275. margin-bottom: 10px;
  276. }
  277. .changesSaved {
  278. text-align: center;
  279. padding-top: 200px;
  280. }
  281. .aboutUsStyle {
  282. padding-top: 200px;
  283. display: flex;
  284. flex-direction: column;
  285. align-items: center;
  286. }
  287. .chatPageContainer {
  288. display: flex;
  289. }
  290. .newChatContainer {
  291. padding-top: 50px;
  292. }
  293. .chatAside {
  294. list-style: none;
  295. padding: 0;
  296. }
  297. .chatMain {
  298. min-width: 100vh;
  299. height: 75vh;
  300. display: flex;
  301. flex-direction: column;
  302. /* flex-wrap: nowrap; */
  303. overflow: auto;
  304. padding: 20px;
  305. }
  306. .msgLi {
  307. width: 500px;
  308. border: 1px solid gray;
  309. margin: 10px;
  310. background-color: rgb(76, 145, 199);
  311. border-radius: 15px;
  312. padding: 8px;
  313. list-style-type: none;
  314. margin-left: 40vh;
  315. }
  316. .msgOther {
  317. max-width: 500px;
  318. border: 1px solid gray;
  319. margin: 10px;
  320. background-color: rgb(244, 244, 244);
  321. border-radius: 15px;
  322. list-style-type: none;
  323. padding: 8px;
  324. }
  325. .noMsg {
  326. padding: 0vh 0 0 35vh;
  327. }
  328. .chatLi ul {
  329. margin-left: 10px;
  330. }
  331. .chatLi h5 {
  332. color: black;
  333. }
  334. .chatContainer {
  335. /* margin: 10px 0px; */
  336. max-height: 70vh;
  337. /* width: 240vh; */
  338. overflow: auto;
  339. }
  340. .chatsContainer{
  341. overflow: auto;
  342. }
  343. .btn.btn-primary {
  344. max-width: 90vh;
  345. }
  346. .chatBlock {
  347. display: flex;
  348. flex-direction: column;
  349. justify-content: space-between;
  350. max-height: 95vh;
  351. }
  352. .msgBlock {
  353. /* max-width: 500px; */
  354. display: flex;
  355. }
  356. .sendMsgBlock {
  357. display: flex;
  358. flex-direction: column;
  359. padding-right: 30px;
  360. }
  361. .sendMsgBlock textarea {
  362. /* margin: 20px 0px 0px 0px; */
  363. padding: 10px;
  364. width: 90vh;
  365. }
  366. .sendMsgBlock button {
  367. margin: 20px 30px 20px 50px;
  368. }
  369. .sendBlock {
  370. display: flex;
  371. }
  372. .sendBlock img {
  373. margin: 20px;
  374. }
  375. .flexContainer {
  376. margin: 0 auto;
  377. }
  378. .sandFile {
  379. width: 30px;
  380. }
  381. .chatsList {
  382. display: flex;
  383. }
  384. .chatsCard {
  385. display: flex;
  386. }
  387. .displayFixed {
  388. display: flex;
  389. align-items: center;
  390. position: absolute;
  391. top: 2px;
  392. }
  393. .displayFixed h5 {
  394. padding-top: 3px;
  395. color: white;
  396. }
  397. .displayFixed h6 {
  398. padding: 10px 0 0 50vh;
  399. color: white;
  400. }
  401. #spinner {
  402. display: block;
  403. }
  404. /* ---------------------------------- */
  405. @keyframes ldio-95gtuxj5ve {
  406. 0% { transform: translate(-50%,-50%) rotate(0deg); }
  407. 100% { transform: translate(-50%,-50%) rotate(360deg); }
  408. }
  409. .ldio-95gtuxj5ve div {
  410. position: absolute;
  411. width: 120px;
  412. height: 120px;
  413. border: 20px solid #0d6efd;
  414. border-top-color: transparent;
  415. border-radius: 50%;
  416. }
  417. .ldio-95gtuxj5ve div {
  418. animation: ldio-95gtuxj5ve 1s linear infinite;
  419. top: 100px;
  420. left: 100px
  421. }
  422. .loadingio-spinner-rolling-e3qh2r8uzre {
  423. width: 200px;
  424. height: 200px;
  425. display: inline-block;
  426. overflow: hidden;
  427. background: #f1f2f3;
  428. }
  429. .ldio-95gtuxj5ve {
  430. width: 100%;
  431. height: 100%;
  432. position: relative;
  433. transform: translateZ(0) scale(1);
  434. backface-visibility: hidden;
  435. transform-origin: 0 0; /* see note above */
  436. }
  437. .ldio-95gtuxj5ve div { box-sizing: content-box; }
  438. /* generated by https://loading.io/ */
  439. /* ------------------------------------------------------------ */
  440. .preloader {
  441. color: #0d6efd;
  442. display: flex;
  443. flex-direction: column;
  444. align-items: center;
  445. padding-top: 30vh;
  446. }
  447. .searchBlock {
  448. padding: 10px 10px 10px 0;
  449. display: flex;
  450. justify-content: space-between;
  451. align-items: center;
  452. }
  453. .membersBlock {
  454. width: 50vh;
  455. padding: 10px 10px 10px 0;
  456. display: flex;
  457. justify-content: space-between;
  458. align-items: center;
  459. }
  460. .searchBlock:hover{
  461. width: 100%;
  462. background-color: lightgray;
  463. }
  464. .search-item {
  465. display: flex;
  466. align-items: center;
  467. width: 53vh;
  468. }
  469. .search-item div{
  470. font-size: 20px;
  471. color: black;
  472. }
  473. .search-item {
  474. margin: 5px 0;
  475. text-decoration: none;
  476. }