Sha256: d6fdcb9d30aa018f07c0a6ff3d0ad709e5492e580d9035db5e76ff7dde495740

Contents?: true

Size: 818 Bytes

Versions: 1

Compression:

Stored size: 818 Bytes

Contents

/* Table */

.slide table {
    margin-left: -100px;
    margin-bottom: 1em;
    width: calc(100% + 100px + 100px);
    border-collapse: collapse;
    border-spacing: 0;
}

/* Cells */

.slide th,
.slide td {
    padding-top: 0;
    padding-bottom: 0;
}

.slide th {
    text-align: left;
    font-weight: bold;
}

.slide th:first-child,
.slide td:first-child {
    padding-left: 96px;
}

.slide th:last-child,
.slide td:last-child {
    padding-right: 96px;
}

/* Lines */

.slide tr:not(:last-of-type) > * {
    background:
        linear-gradient(
            to top,
            var(--color-line) 0.06em,
            transparent 0.06em
        ) repeat-x;
}

/* Stripes */

.slide table.striped tr:nth-child(even) {
    background: var(--color-fill);
}

.slide table.striped tr > * {
    background-image: none;
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
slippery-0.4.2 assets/shower/themes/ribbon/styles/slide/content/table.css