Sha256: 0ea896aa52418d40b8f71ba14c0fc7aebb698093b61dd2b57ca05f2de1e60a5f

Contents?: true

Size: 817 Bytes

Versions: 1

Compression:

Stored size: 817 Bytes

Contents

/* Table */

.slide table {
    margin-left: -96px;
    margin-bottom: 1em;
    width: calc(96px + 100% + 112px);
    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-light) 0.06em,
            transparent 0.06em
        ) repeat-x;
}

/* Stripes */

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

.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/material/styles/slide/content/table.css