From 8177471f70a517e78b4470cd01c375ed30121102 Mon Sep 17 00:00:00 2001 From: Volpeon Date: Wed, 10 Nov 2021 21:20:58 +0100 Subject: Simplified home page --- assets/css/layouts/_landing.scss | 54 ---------------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 assets/css/layouts/_landing.scss (limited to 'assets/css/layouts/_landing.scss') diff --git a/assets/css/layouts/_landing.scss b/assets/css/layouts/_landing.scss deleted file mode 100644 index a81b105..0000000 --- a/assets/css/layouts/_landing.scss +++ /dev/null @@ -1,54 +0,0 @@ -@include namespace('landing') { - @include store(( - --dims: ( - --banner-width: 30rem, - ), - --colors: ( - --banner-bg: prop(--colors --bg, $global: true) - ) - )); - - @include layout(namespace()) { - display: flex; - flex-direction: row; - align-items: center; - margin-top: auto; - margin-bottom: auto; - - @include element('banner') { - width: 70%; - max-width: prop(--dims --banner-width); - background-color: prop(--colors --banner-bg); - } - - @include element('content') { - width: 100%; - } - - @include iro-responsive-env(('md', 'lg')) { - padding-right: iro-responsive-set((0, 3rem)); - padding-left: iro-responsive-set((0, 6rem)); - } - - @include media('<=md') { - display: block; - - @include element('side') { - display: none; - - @include sibling-element('side') { - display: block; - } - } - - @include element('banner', 'content') { - width: auto; - padding: 0; - } - - @include element('banner') { - max-width: none; - } - } - } -} -- cgit v1.2.3-54-g00ecf