index.less 709 Bytes
Newer Older
wuhao's avatar
wuhao committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
.hoverables {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.4s;
}

.sort {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.4s;

  &:hover {
    background-color: #ffffff;
  }

  * {
    transition: all 0.4s;
  }
}
.whitebg {
  span,
  a {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
  }
  a {
    margin: 0 12px;
  }
}