dimensionsConfig.less 2.02 KB
Newer Older
1
.container3d{
2 3 4 5
    width: 100%;

    background-color: #ffffff;
    display: flex;
shaoan123's avatar
shaoan123 committed
6 7 8
    .ant-table {
        min-height: 15rem !important;
      }
9 10 11 12 13 14 15 16 17 18
    padding: 0.8rem;
    .ant-table-thead tr th {
        font-weight: 600;
        color: rgba(0, 0, 0, 0.85);
      }
      overflow-y: scroll;
      .ant-input-number-input{
          background-color: #ffffff;
          color: #000000;
      }
19 20 21
      .ant-card-body {
        padding: 12px 24px 24px 25px;
    }
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
}
.imgList{
    display: flex;
}
.imgItem{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin:0  1rem 1rem 0;
}
.tileBtn{
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding: 0 0 2rem
}
.schemeName{
    margin-right: 0.8rem;
    font-weight: bold;
41
    
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
}

.schemeItem,.schemeBtn{
    display: flex;
    align-items: center;
}
.schemeBtn{
    width: 12rem;
    justify-content: center;
}
.mapItem{
    display: flex;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 2.2rem;
    align-items: center;
    margin: 0.5rem 0;
    width: 14.5rem;
}
.defaultTile{
    background: #ccc;
    color: white;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
    width: 3rem;
     justify-content: center;

}
.mapText{
    width: 10rem;
    text-align: center;
}
.mapIcon{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.activeTile{
    background-color: #4699f4
}
.dropList {
    position: absolute;
    right: 2%;
    top: 25%;
    color: rgba(0, 0, 0, 0.25);
    z-index: 99;
}
.divider{
    display: flex;
    align-items: center;
    line-height: 100%;
    padding: 0.5rem;
    .dividerIcon{
        margin-left: 0.8rem;
        color: #4699f4;   
        cursor: pointer; 
    }
}
shaoan123's avatar
shaoan123 committed
103

104 105 106 107 108 109 110 111 112
  .cardsList{
    display: flex;
    flex-wrap: wrap;
  }
  .cardItem{
    width: 18rem;
    height: 26rem;
    margin: 0 2rem;
  }
113 114 115 116
.containerFileds{
    display: flex;
    justify-content: space-between;
    width: 98%;
117 118
    border:1px solid #f0f0f0;
    margin-top: 1rem;
119
}