index.less 541 Bytes
Newer Older
wuhao's avatar
wuhao committed
1 2 3 4
.title {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
wuhao's avatar
wuhao committed
5
  padding-left: 16px;
wuhao's avatar
wuhao committed
6 7 8 9 10 11
  color: #000000;
  font-weight: bolder;
  font-size: 16px;
  &::before {
    position: absolute;
    top: 4px;
wuhao's avatar
wuhao committed
12
    left: 7px;
wuhao's avatar
wuhao committed
13 14 15 16 17 18 19 20 21 22
    width: 3px;
    height: 16px;
    background-color: #13c2c2;
    border-radius: 4px;
    content: '';
  }
  &::after {
    position: absolute;
    top: 14px;
    right: 0px;
wuhao's avatar
wuhao committed
23
    width: calc(100% - 160px);
wuhao's avatar
wuhao committed
24 25 26 27 28 29
    height: 1px;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    content: '';
  }
}