Sha256: 47aa7256de5458b13b39f53d0eccdc99ecb581716580c093006b470a615c66fa

Contents?: true

Size: 870 Bytes

Versions: 10

Compression:

Stored size: 870 Bytes

Contents

// Tables
// stylelint-disable max-nesting-depth, selector-no-type, selector-max-type

.table-wrapper {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-bottom: $sp-5;
  overflow-x: auto;
  border-radius: $border-radius;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.12),
    0 3px 10px rgba(0, 0, 0, 0.08);
}

table {
  display: table;
  min-width: 100%;
  border-collapse: separate;
}

th,
td {
  @include fs-3;

  min-width: 7.5rem;
  padding: $sp-2 $sp-3;
  background-color: $table-background-color;
  border-bottom: $border rgba($border-color, 0.5);
  border-left: $border $border-color;

  &:first-of-type {
    border-left: 0;
  }
}

tbody {
  tr {
    &:last-of-type {
      th,
      td {
        border-bottom: 0;
      }

      td {
        padding-bottom: $sp-3;
      }
    }
  }
}

thead {
  th {
    border-bottom: $border $border-color;
  }
}

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
opendevsecops-jekyll-0.1.2 _sass/tables.scss
opendevsecops-jekyll-0.1.1 _sass/tables.scss
opendevsecops-jekyll-0.1.0 _sass/tables.scss
just-the-docs-0.8.2 _sass/tables.scss
just-the-docs-0.8.1 _sass/tables.scss
just-the-docs-0.8.0 _sass/tables.scss
just-the-docs-0.7.0 _sass/tables.scss
just-the-docs-0.6.2 _sass/tables.scss
just-the-docs-0.6.1 _sass/tables.scss
just-the-docs-0.6.0 _sass/tables.scss