Sha256: 1101b0a5c070c2656365064dff094ded450d0cd937f0afd215de9243730a3f2b

Contents?: true

Size: 1.65 KB

Versions: 9

Compression:

Stored size: 1.65 KB

Contents

.bw-back {
    // Positioning
    position: fixed;

    /* This tells css to ensure that this
     * layer is in the back, regardless of
     * how it's included in the document.
     * It is exactly what it says, the
     * z-axis position of the element */
    z-index: -1;

    /* Back panel sizing. Fill vertically from
     * top to bottom. Horizontally, start at
     * left, be $desktop-menu-size wide*/
    top: 0%;
    left: 0%;
    bottom: 0%;
    width: $desktop-menu-size;

    // Styling
    background-color: $back-color;
    border-color: $white-color;
    color: $white-color;

    // Align text
    text-align: right;

    // Fill entire screen on mobile
    @include on-mobile {
        top: 0%;
        left: 0%;
        bottom: 0%;
        width: 100%;
    };

    // Container
    .bw-back-container {
        // Text align
        text-align: right;
        display: block;
        &.visible {
            display: block;
        }

        // Padding
        padding: $spacing-unit;
        margin: 0;
        @include on-mobile {
            margin-left: $spacing-unit;
            margin-right: $spacing-unit;
            display: none;
            &.visible {
                display: block;
            }
        }
    }

    // Links
    .bw-links {
        a {
            text-decoration: none;
            &:hover {
                border-bottom: 1px solid;
            }
        }
    }

    // Backwhite footer
    .bw-footer {
        color: darken($white-color, 25%);
        text-align: justify;
        font-size: $small-font-size;
        p { text-align: justify; }
    }
}

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
jekyll-theme-backwhite-2.0.0 _sass/jekyll-theme-backwhite/_back.scss
jekyll-theme-backwhite-1.2.0 _sass/jekyll-theme-backwhite/_back.scss
jekyll-theme-backwhite-1.1.1 _sass/jekyll-theme-backwhite/_back.scss
jekyll-theme-backwhite-1.1.0 _sass/jekyll-theme-backwhite/_back.scss
jekyll-theme-backwhite-1.0.4 _sass/jekyll-theme-backwhite/_back.scss
jekyll-theme-backwhite-1.0.3 _sass/jekyll-theme-backwhite/_back.scss
jekyll-theme-backwhite-1.0.2 _sass/jekyll-theme-backwhite/_back.scss
jekyll-theme-backwhite-1.0.1 _sass/jekyll-theme-backwhite/_back.scss
jekyll-theme-backwhite-1.0.0 _sass/jekyll-theme-backwhite/_back.scss