_tables.scss 431 字节
Newer Older
C
chomik 已提交
1
.table {
C
chomik 已提交
2 3
  color: inherit;

C
chomik 已提交
4 5
  thead {
    th {
C
chomik 已提交
6
      background: $min-black;
C
codecalm 已提交
7
      border-width: $table-border-width;
C
codecalm 已提交
8
      @include subheader;
C
chomik 已提交
9 10 11
    }
  }

C
chomik 已提交
12
  th {
C
codecalm 已提交
13
    color: $text-muted;
C
chomik 已提交
14 15 16
  }
}

C
chomik 已提交
17
.table-nowrap {
C
codecalm 已提交
18 19
  th,
  td {
C
chomik 已提交
20 21 22 23 24
    white-space: nowrap;
  }
}


C
chomik 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
.table-md {
  th,
  td {
    padding: .5rem;
  }
}

.table-vcenter {
  td,
  th {
    vertical-align: middle;
  }
}

.table-center {
  td,
  th {
    text-align: center;
  }
}