Compare commits

..

No commits in common. "17ec418a6e63e2728f17785e4ec2d60e0d623f80" and "d58e335311c579434f4db097838d7cf13876a6f5" have entirely different histories.

2 changed files with 10 additions and 10 deletions

File diff suppressed because one or more lines are too long

View File

@ -51,7 +51,7 @@ $grid-column-width:$grid-row-width/$grid-column-count;
} }
// presentation as home and category archive // presentation as home and category archive
.home,.archive,.page-template-homepage2021{ .home,.archive{
.main-container { .main-container {
@include xy-grid-container(100vw,$global-padding*2); @include xy-grid-container(100vw,$global-padding*2);
overflow: hidden; overflow: hidden;
@ -166,11 +166,10 @@ $grid-column-width:$grid-row-width/$grid-column-count;
.bfr_category_title{ .bfr_category_title{
display:none; display:none;
} }
}
// homepage 2021 // homepage 2021
.homepage-2021 { //&.main-container .homepage-2021 { //&.main-container
.entry-content { .entry-content {
overflow: hidden;
position: relative; position: relative;
& > * { & > * {
float:left; float:left;
@ -196,7 +195,7 @@ $grid-column-width:$grid-row-width/$grid-column-count;
$homepage2021-gallery-square-side: $global-margin*8; $homepage2021-gallery-square-side: $global-margin*8;
$homepage2021-gallery-square-size: $homepage2021-gallery-square-side+$global-margin; $homepage2021-gallery-square-size: $homepage2021-gallery-square-side+$global-margin;
.entry-content { .entry-content {
height: $homepage2021-gallery-square-size*14; min-height: $homepage2021-gallery-square-size*14;
& > * { & > * {
max-width: 55%; max-width: 55%;
} }
@ -214,10 +213,10 @@ $grid-column-width:$grid-row-width/$grid-column-count;
} }
} }
@include breakpoint(medium) { @include breakpoint(medium) {
$homepage2021-gallery-square-side: $global-margin*7; $homepage2021-gallery-square-side: $global-margin*8;
$homepage2021-gallery-square-size: $homepage2021-gallery-square-side+$global-margin; $homepage2021-gallery-square-size: $homepage2021-gallery-square-side+$global-margin;
.entry-content { .entry-content {
height: $homepage2021-gallery-square-size*12; min-height: $homepage2021-gallery-square-size*7;
& > * { & > * {
max-width: 48%; max-width: 48%;
} }
@ -238,7 +237,7 @@ $grid-column-width:$grid-row-width/$grid-column-count;
$homepage2021-gallery-square-side: $global-margin*9; $homepage2021-gallery-square-side: $global-margin*9;
$homepage2021-gallery-square-size: $homepage2021-gallery-square-side+$global-margin; $homepage2021-gallery-square-size: $homepage2021-gallery-square-side+$global-margin;
.entry-content { .entry-content {
height: $homepage2021-gallery-square-size*6; min-height: $homepage2021-gallery-square-size*6;
& > * { & > * {
max-width: 48%; max-width: 48%;
} }
@ -256,3 +255,4 @@ $grid-column-width:$grid-row-width/$grid-column-count;
} }
} }
} }
}