trtc-room.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. @import "./template/1v1/1v1.css";
  2. @import "./template/grid/grid.css";
  3. @import "./template/custom/custom.css";
  4. .pusher {
  5. width: 100%;
  6. height: 100%;
  7. }
  8. .player {
  9. width: 100%;
  10. height: 100%;
  11. }
  12. .debug-info{
  13. position: absolute;
  14. z-index: 9999;
  15. background-color: rgba(0, 0, 0, .5);
  16. color: #fff;
  17. bottom: 0;
  18. left: 0;
  19. padding: 10rpx;
  20. font-size: 12px;
  21. }
  22. .debug-info-btn button,
  23. .debug-info button{
  24. padding: 0 8px;
  25. min-height: 18px;
  26. width: auto;
  27. font-size: 12px;
  28. line-height: 18px;
  29. display: inline-block;
  30. color: #06ae56;
  31. background-color: #f2f2f2;
  32. }
  33. .debug-info button.false{
  34. color: rgb(114, 114, 114);
  35. }
  36. .debug-info-btn button,
  37. .debug-info .button-hover {
  38. background-color: rgb(219, 219, 219);
  39. }
  40. .debug-info .close-btn{
  41. position: absolute;
  42. top: 0;
  43. right: 0;
  44. padding: 5px 10px;
  45. }
  46. .debug-info-btn{
  47. position: absolute;
  48. z-index: 9998;
  49. bottom: 10rpx;
  50. left: 0;
  51. }
  52. button.btn {
  53. display: inline-block;
  54. width: auto;
  55. height: 60rpx;
  56. min-height: 60rpx;
  57. line-height: 60rpx;
  58. font-size: 12px;
  59. font-weight: normal;
  60. padding: 0 10rpx;
  61. color: #006eff;
  62. background-color: #f2f2f2;
  63. margin: 0 16rpx;
  64. }
  65. button.btn.active{
  66. color: #f2f2f2;
  67. background-color: #006eff;
  68. }
  69. button.btn-hover{
  70. background-color: #d1d1d1;
  71. }
  72. .none,
  73. .view-container.none,
  74. .template-grid .view-container.none,
  75. .template-1v1 .view-container.none{
  76. display: none !important;
  77. }