_icons.scss 693 字节
Newer Older
C
chomik 已提交
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 45 46 47 48 49 50 51 52 53
.icon {
  width: 1em;
  height: 1em;
  vertical-align: -2px;
}

.icon-md {
  width: px2rem(20px);
  height: px2rem(20px);
}

.icon-lg {
  width: px2rem(40px);
  height: px2rem(40px);
}

.icon-thin {
  stroke-width: 1;
}

.icon-filled {
  fill: currentColor;
}

.icons-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 -1px -1px 0;
  list-style: none;

  > li {
    flex: 1 0 4rem;
  }
}

.icons-list-wrap {
  overflow: hidden;
}

.icons-list-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  text-align: center;
  border-right: 1px solid $border-color;
  border-bottom: 1px solid $border-color;

  i {
    font-size: 1.25rem;
  }
}