App.less 1.47 KB
Newer Older
喻天's avatar
喻天 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
.root {
  width: 100%;
  height: 100%;

  .containerOut {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    height: 100%;
  }

  .containerOut .container {
    width: 100%;
    height: 100%;
    background: rgba(13, 14, 27, 0.7);
    border: 1px solid transparent;
18
    position: relative;
喻天's avatar
喻天 committed
19
  }
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42

  :global {
    .jessibuca-control {
      width: 36px;
      height: 100%;
      padding: 0 4px;
      cursor: pointer;

      i {
        display: inline-block;
        width: 100%;
        height: 100%;
        background: url('./assets/控制.svg') no-repeat;
        background-size: 100% 100%;
      }

      &:hover {
        i {
          background: url('./assets/控制1.svg') no-repeat;
          background-size: 100% 100%;
        }
      }
    }
43 44 45 46

    .jessibuca-datarate {
      display: flex;
      align-items: center;
47
      border: 1px solid #999999;
48 49 50 51 52 53 54 55 56 57 58 59 60
      border-radius: 4px;
      font-size: 12px;

      span {
        width: 36px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border-radius: 3px;

        &:nth-child(1) {
61
          color: #999999b3;
62 63 64
        }

        &:nth-child(2) {
65
          color: #eeeeee;
66 67 68 69 70 71
        }
      }

      &.jessibuca-datarate-hd {
        span {
          &:nth-child(1) {
72
            color: #eeeeee;
73 74 75
          }

          &:nth-child(2) {
76
            color: #999999b3;
77 78 79 80
          }
        }
      }
    }
81 82
  }
}