avatar-demo.acss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. .rtcroom-full-screen {
  2. width: 100%;
  3. }
  4. .main-center-fullscreen {
  5. position: fixed;
  6. top: 0;
  7. bottom: 0;
  8. right: 0;
  9. left: 0;
  10. z-index: 999;
  11. /* width: 7.5rem;
  12. height: 16.24rem; */
  13. display: flex;
  14. justify-content: center;
  15. align-items: center;
  16. box-sizing: border-box;
  17. background-image: linear-gradient(-33deg, #0b164c 7%, #1b2c7e 74%);
  18. }
  19. .chat-box {
  20. position: absolute;
  21. z-index: 9999;
  22. width: 90%;
  23. min-height: 60px;
  24. max-height: 300px;
  25. background: rgba(255, 255, 255, 0.46);
  26. bottom: 180px;
  27. padding: 5px;
  28. left: 50%;
  29. transform: translateX(-50%);
  30. display: flex;
  31. flex-direction: column;
  32. /*padding: ;*/
  33. border-radius: 10px;
  34. overflow: scroll;
  35. }
  36. .btnContainer {
  37. position: absolute;
  38. z-index: 9999;
  39. width: calc(90% + 10px);
  40. height: 120px;
  41. bottom: 50px;
  42. left: 50%;
  43. transform: translateX(-50%);
  44. display: flex;
  45. flex-wrap: wrap;
  46. /*justify-content: center;*/
  47. align-items: center;
  48. }
  49. .btn-avatar {
  50. /* position:absolute; */
  51. width: calc((100% - 40px) / 4);
  52. margin: 5px;
  53. border-radius: 10px;
  54. font-size: 13px;
  55. /* z-index: 9991; */
  56. }