style.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. body {
  2. background-color: #fff5e3;
  3. font-family: sans-serif;
  4. display: flex;
  5. flex-wrap: wrap;
  6. margin: 0;
  7. }
  8. #message-container {
  9. padding: 0 5%;
  10. width: 100%;
  11. }
  12. h1 {
  13. width: 100%;
  14. }
  15. #message-input {
  16. width: 100%;
  17. position: fixed;
  18. top: 90%;
  19. height: 10%;
  20. display: flex;
  21. background-color: #a0a0a0f7;
  22. }
  23. #message-text-box {
  24. width: 90%;
  25. border: none;
  26. border-radius: 20px 0 0 20px;
  27. padding: 5px;
  28. vertical-align: middle;
  29. font-size: medium;
  30. resize: none;
  31. vertical-align: middle;
  32. }
  33. #message-text-box:focus {
  34. outline: none;
  35. }
  36. #messages {
  37. display: flex;
  38. flex-direction:column;
  39. width: 100%;
  40. margin: auto;
  41. }
  42. #send-message-button {
  43. width: 10%;
  44. font-size: medium;
  45. }
  46. #send-message-button:hover {
  47. opacity: 10%;
  48. }
  49. .message {
  50. width: 40%;
  51. flex-basis: 100%;
  52. border: 1px solid;
  53. padding: 1%;
  54. border-radius: 8px;
  55. box-shadow: 2px 2px #a0a0a0f7;
  56. }
  57. .message .time {
  58. font-size: x-small;
  59. display: flex;
  60. align-self:flex-end;
  61. }
  62. .from-me {
  63. background-color: #dcf8c6;
  64. }
  65. .from-them {
  66. background-color: #fff;
  67. align-self:flex-end;
  68. }