Center.less 1.33 KB
Newer Older
ddcat1115's avatar
ddcat1115 committed
1
@import '~antd/lib/style/themes/default.less';
2
@import '~@/utils/utils.less';
ddcat1115's avatar
ddcat1115 committed
3 4 5

.avatarHolder {
  margin-bottom: 24px;
6
  text-align: center;
ddcat1115's avatar
ddcat1115 committed
7 8 9 10 11 12 13 14

  & > img {
    width: 104px;
    height: 104px;
    margin-bottom: 20px;
  }

  .name {
15 16 17
    margin-bottom: 4px;
    color: @heading-color;
    font-weight: 500;
ddcat1115's avatar
ddcat1115 committed
18 19 20 21 22 23 24
    font-size: 20px;
    line-height: 28px;
  }
}

.detail {
  p {
25
    position: relative;
ddcat1115's avatar
ddcat1115 committed
26 27 28 29 30 31 32 33 34 35 36
    margin-bottom: 8px;
    padding-left: 26px;

    &:last-child {
      margin-bottom: 0;
    }
  }

  i {
    position: absolute;
    top: 4px;
37 38 39
    left: 0;
    width: 14px;
    height: 14px;
ddcat1115's avatar
ddcat1115 committed
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
    background: url(https://gw.alipayobjects.com/zos/rmsportal/pBjWzVAHnOOtAUvZmZfy.svg);

    &.title {
      background-position: 0 0;
    }

    &.group {
      background-position: 0 -22px;
    }

    &.address {
      background-position: 0 -44px;
    }
  }
}

jim's avatar
jim committed
56 57
.tagsTitle,
.teamTitle {
ddcat1115's avatar
ddcat1115 committed
58
  margin-bottom: 12px;
59 60
  color: @heading-color;
  font-weight: 500;
ddcat1115's avatar
ddcat1115 committed
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
}

.tags {
  :global {
    .ant-tag {
      margin-bottom: 8px;
    }
  }
}

.team {
  :global {
    .ant-avatar {
      margin-right: 12px;
    }
  }

  a {
    display: block;
    margin-bottom: 24px;
    color: @text-color;
jim's avatar
jim committed
82
    transition: color 0.3s;
ddcat1115's avatar
ddcat1115 committed
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
    .textOverflow();

    &:hover {
      color: @primary-color;
    }
  }
}

.tabsCard {
  :global {
    .ant-card-head {
      padding: 0 16px;
    }
  }
}