style.css 638 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. body{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. background: #607D80;
  6. }
  7. .send{
  8. align-content: center;
  9. width: 360px;
  10. height: 480px;
  11. background-color: #BFFAFF;
  12. border: solid 5px #9DCDD1;
  13. }
  14. .inp{
  15. background: #9DCDD1;
  16. padding: 10px;
  17. }
  18. .user_name{
  19. width: 74%;
  20. }
  21. .user_massege{
  22. width: 49%;
  23. }
  24. .chat{
  25. height: 380px;
  26. padding: 10px;
  27. font-size: 10px;
  28. overflow-x: scroll;
  29. white-space: normal;
  30. background: #BFFAFF;
  31. }
  32. .chat div {
  33. margin-top:10px;
  34. width: auto;
  35. border-bottom: solid #238078 1px;
  36. }
  37. .chat b {
  38. font-size: 14px;
  39. color: #397A80;
  40. }
  41. .chat time{
  42. font-size: 12px;
  43. margin-left: 5px;
  44. color:#238078;
  45. }