index.less 1.24 KB
Newer Older
jim's avatar
jim committed
1 2 3 4 5 6 7 8 9
.sidebar {
  .mini_bar {
    width: 50px;
    height: 45px;
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
    text-align: center;
    font-size: 24px;
    background: white;
jim's avatar
jim committed
10 11 12
    position: fixed;
    bottom: 50px;
    right: 50px;
jim's avatar
jim committed
13 14
    cursor: pointer;
    z-index: 99;
jim's avatar
jim committed
15 16 17 18 19 20
    box-shadow: 0 0 6px 0 rgba(0, 21, 41, 0.35);
    img {
      width: 28px;
      height: 28px;
    }
  }
jim's avatar
jim committed
21 22 23 24 25
  :global {
    .drawer {
      z-index: 999;
    }
  }
jim's avatar
jim committed
26 27 28 29
}

.content {
  width: 336px;
jim's avatar
jim committed
30 31
  height: 100%;
  background: #fff;
jim's avatar
jim committed
32 33 34 35 36 37 38
  :global {
    .ant-switch-checked {
      background-color: #87d068;
    }
    .ant-list-item {
      padding-top: 7px;
      padding-bottom: 7px;
jim's avatar
jim committed
39 40
    }
  }
jim's avatar
jim committed
41
}
jim's avatar
jim committed
42 43 44 45 46 47 48 49 50 51 52 53

.layoutSetting {
  margin: 5px;
  display: flex;
  .item {
    cursor: pointer;
    width: 70px;
    height: 44px;
    text-align: center;
    margin: 8px;
  }
}
jim's avatar
jim committed
54 55 56 57
.color_block {
  width: 38px;
  height: 22px;
  margin: 4px;
jim's avatar
jim committed
58
  cursor: pointer;
jim's avatar
jim committed
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
  margin-right: 12px;
  display: inline-block;
  vertical-align: middle;
  background: #002140;
  border-radius: 2px;
}
.color_block_title {
  display: inline-block;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 22px;
}
.bodyTitle {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 22px;
  margin-bottom: 10px;
jim's avatar
jim committed
76
}