Sha256: f971c30c1b70212c9cde2457b6e553e7fd7bc33f8f247f4f5593c0618be0e6a2

Contents?: true

Size: 1.86 KB

Versions: 7

Compression:

Stored size: 1.86 KB

Contents

///
/// Ethereal by HTML5 UP
/// html5up.net | @ajlkn
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
///

/* Wrapper */

#wrapper {
    @include vendor('display', 'flex');
    @include vendor('flex-direction', 'row');
    @include vendor('transition', (
        'opacity 1s ease-out',
        'transform 0.75s ease-out'
    ));
    @include vendor('transition-delay', '0.25s');
    cursor: default;
    position: relative;
    height: 32rem;
    box-shadow: 0 2rem 4rem 0.25rem transparentize(_palette(bg), 0.425);

    > .scrollZone {
        position: fixed;
        width: 6rem;
        height: inherit;
        cursor: -moz-grab;
        cursor: -webkit-grab;
        cursor: -ms-grab;
        cursor: grab;
        z-index: _misc(z-index-base) + 100;

        &.left {
            left: 0;
        }

        &.right {
            right: 0;
        }
    }

    > .copyright {
        position: absolute;
        bottom: -3rem;
        right: 0;
        font-size: 0.8rem;
        color: transparentize(_palette(bg), 0.625);
        margin-bottom: 0;

        a {
            &:hover {
                color: inherit;
            }
        }
    }

    &.is-dragging {
        @include vendor('user-select', 'none');
        cursor: -moz-grab;
        cursor: -webkit-grab;
        cursor: -ms-grab;
        cursor: grab;

        * {
            @include vendor('user-select', 'none');
        }

        *:not(a, .image) {
            cursor: -moz-grab;
            cursor: -webkit-grab;
            cursor: -ms-grab;
            cursor: grab;
        }
    }

    &.is-dragged {
        * {
            @include vendor('pointer-events', 'none');
        }
    }

    body.is-preload & {
        @include vendor('transform', 'translateX(2rem)');
        opacity: 0;
    }
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
jekyll-theme-ethereal-0.5.6 _sass/main/layout/_wrapper.scss
jekyll-theme-ethereal-0.5.5 _sass/main/layout/_wrapper.scss
jekyll-theme-ethereal-0.5.4 _sass/main/layout/_wrapper.scss
jekyll-theme-ethereal-0.5.3 _sass/main/layout/_wrapper.scss
jekyll-theme-ethereal-0.5.2 _sass/main/layout/_wrapper.scss
jekyll-theme-ethereal-0.5.1 _sass/main/layout/_wrapper.scss
jekyll-theme-ethereal-0.5.0 _sass/main/layout/_wrapper.scss