style.css 450 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. * {
  2. box-sizing: border-box;
  3. }
  4. body {
  5. padding: 0 10px 0;
  6. display: flex;
  7. justify-content: center;
  8. background: blue;
  9. }
  10. .container {
  11. width: 500px;
  12. background: rgb(97, 97, 251);
  13. }
  14. input,
  15. button,
  16. select {
  17. font-size: 20px;
  18. }
  19. #nick {
  20. width: 150px;
  21. }
  22. #message {
  23. margin-left: -4px;
  24. width: 287px;
  25. }
  26. .main {
  27. height: 100%;
  28. }
  29. #user {
  30. display: flex;
  31. margin-top: -5px;
  32. }
  33. .emojis {
  34. display: flex;
  35. }
  36. .emoji img {
  37. width: 50px;
  38. }