Sha256: 486903cc85dc1183290280a0dcb74423df02c8ae8591319f08cb195724df484c

Contents?: true

Size: 1.12 KB

Versions: 1

Compression:

Stored size: 1.12 KB

Contents

.footer {
    margin-top: $spacing-3;
    padding: $spacing-3;
    font-size: $small-font-size;
    text-align: center;
    @include with-theme {
        background-color: color-for(hl-area);
        color: color-for(hl);
    }
}

.footer-container {
    margin: auto;
    @include on-desktop {
        max-width: 50%;
    }
    @include on-tablet {
        max-width: 75%;
    }
}

@mixin footer-section {
    margin: $spacing-1 0pt;
}

.site-description {
    @include footer-section;
    text-align: justify;
}

.social-bar {
    @include footer-section;
}

.copyright {
    @include footer-section;
    font-style: italic;
}

.social-link {
    // Sizing and spacing
    margin: $spacing-1;

    // Sizing is scaled by font
    $font-size: $medium-font-size;

    // Manually set width and height
    width: $font-size + 2*$spacing-1;
    height: $font-size + 2*$spacing-1;
    border-radius: $font-size;

    // Center icon
    display: inline-grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    place-items: center;

    // Style icon
    font-size: $font-size;
    text-decoration: none;
    color: inherit !important;
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-theme-peaceful-gates-2.0.0 _sass/jekyll-theme-peaceful-gates/_footer.scss