webgl_rxdz_look.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. canvas { width:100vw; height:100vh;z-index: 10; }
  2. page {
  3. -webkit-user-select: none;
  4. user-select: none;
  5. width: 100%;
  6. height:100vh;
  7. overflow-x: hidden;
  8. overflow-y: hidden;
  9. }
  10. #canvas_webgl{
  11. /* background: url(resources/images/daikanyama.jpg) no-repeat center center; */
  12. /* background:#6d0909;
  13. background-size: cover; */
  14. }
  15. .lable-view{
  16. position:absolute;
  17. width:100vw;
  18. }
  19. .word-view{
  20. position: absolute; /* let us position them inside the container
  21. left: 0; /* make their default position the top left of the container */
  22. top: 0;
  23. /* cursor: pointer; */
  24. font-family: "Verdana";
  25. font-weight: 400;
  26. color: #1d1d1d;
  27. user-select: none; /* don't let the text get selected */
  28. z-index: 12;
  29. font-size:26rpx;
  30. /* pointer-events:none; */
  31. line-height: 40rpx;
  32. /* width: 90rpx; */
  33. height: 40rpx;
  34. padding:0rpx 10rpx;
  35. border-radius: 20rpx;
  36. background: #fff;
  37. text-align: center;
  38. }
  39. .floor-view{
  40. position: absolute;
  41. left:30rpx;
  42. bottom:60rpx;
  43. width: 72rpx;
  44. border-radius: 12rpx;
  45. background: rgba(0, 0, 0, 0.4);
  46. overflow: hidden;
  47. z-index: 11;
  48. }
  49. .floor-item{
  50. height: 60rpx;
  51. color: #fff;
  52. }
  53. .floor-item.active{
  54. color: #faa040;
  55. background: #fff;
  56. }