style.css 364 B

12345678910111213141516171819202122232425262728293031
  1. * {
  2. box-sizing: border-box;
  3. }
  4. .base_elem {
  5. width: 100%;
  6. height: 40px;
  7. font-size: 23px;
  8. }
  9. #chat {
  10. width: 100%;
  11. overflow-y: scroll;
  12. overflow-x: hidden;
  13. padding: 10px;
  14. }
  15. .name {
  16. font-size: 14px;
  17. font-weight: bold;
  18. }
  19. .text {
  20. font-size: 20px;
  21. }
  22. .time {
  23. font-size: 10px;
  24. color: #7a7979;
  25. margin-bottom: 15px;
  26. }