Sha256: f36ac19305f2561acdf15957c4347b663e9c3bf64b96b4f0cd4e6389099fb1ae

Contents?: true

Size: 1.33 KB

Versions: 1

Compression:

Stored size: 1.33 KB

Contents

body {
    margin: 0;
    font-family: $font-family;

    @include with-theme {
        background-color: color-for(bg);
        color: color-for(text);
    }
}

a {
    &:hover {
        text-decoration: none;
    }

    @include with-theme {
        color: color-for(primary);
    }
}

h1,h2,h3,h4,h5,h6,p {
    @include page-section;
}

img {
    @include page-section;
    max-width: 100%;
    border-radius: $spacing-2;
}

// Wraps an element with a horizontal scroll bar
.horizontal-scroll {
    @include page-section;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

// Table Design
table {
    border-collapse: collapse;
    table-layout: fixed;
    margin: 0pt;
    min-width: 100%;
    overflow: hidden;
    th {
        @include with-theme {
            color: color-for(primary);
        }
    }
    th,td {
        margin: 0pt;
        padding: $spacing-2;
        overflow: hidden;
        border-bottom: 1px solid;
        white-space: nowrap;
        text-align: center;
        @include with-theme {
            border-color: color-for(primary);
        }
    }
    tr:last-child {
        td {
            border-bottom: none;
        }
    }
}

blockquote {
    @include page-section;
    margin-left: $spacing-3;
    font-size: $medium-font-size;
    @include with-theme {
        color: color-for(primary);
    }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-theme-peaceful-gates-2.2.0 _sass/jekyll-theme-peaceful-gates/_base.scss