index.less 759 Bytes
Newer Older
1
@import "~antd/lib/style/themes/default.less";
ddcat1115's avatar
ddcat1115 committed
2
@import "../../utils/utils.less";
3 4 5 6 7 8 9 10 11 12

.exception {
  display: flex;
  align-items: center;
  height: 100%;

  .imgBlock {
    flex: 0 0 62.5%;
    width: 62.5%;
    padding-right: 152px;
ddcat1115's avatar
ddcat1115 committed
13 14 15 16 17 18 19 20 21
    .clearfix();
  }

  .imgEle {
    height: 360px;
    width: 430px;
    float: right;
    background-repeat: no-repeat;
    background-position: 50% 50%;
22 23 24 25 26 27
  }

  .content {
    flex: auto;

    h1 {
ddcat1115's avatar
ddcat1115 committed
28 29 30 31 32
      color: #434e59;
      font-size: 72px;
      font-weight: 600;
      line-height: 72px;
      margin-bottom: 24px;
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
    }

    .desc {
      color: @text-color-secondary;
      font-size: 20px;
      margin-bottom: 16px;
    }

    .actions {
      button:not(:last-child) {
        margin-right: 8px;
      }
    }
  }
}