You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
777 B

  1. #chat_widget .chat_box {
  2. position: fixed;
  3. bottom: 0;
  4. background-color: white;
  5. width: 70%;
  6. max-width: 100%;
  7. border-top: 1px solid rgba(0, 0, 0, 0.12);
  8. }
  9. #chat_widget .chat_box ul {
  10. margin: 0 auto;
  11. max-width: 100rem;
  12. }
  13. #chat_widget .chat_box form {
  14. width: calc(100% - 1rem);
  15. }
  16. #chat_widget .chat_box form > div {
  17. min-height: 0;
  18. margin-bottom: -1rem;
  19. }
  20. #chat_widget .chat_box form textarea {
  21. padding: 3rem 0px 1rem;
  22. }
  23. #chat_widget .chat_box div.action {
  24. font-size: 4rem;
  25. color: gray;
  26. }
  27. #chat_widget .chat_box div.action:hover {
  28. cursor: pointer;
  29. color: #333;
  30. }
  31. #chat_widget section {
  32. margin-bottom: 1rem;
  33. }
  34. @media screen and (max-width: 1024px) {
  35. #chat_widget .chat_box {
  36. width: 100%;
  37. }
  38. }