run scss compiler

This commit is contained in:
jorge 2021-10-26 14:41:50 +02:00
parent 7f20b6c703
commit 613297618e
2 changed files with 286 additions and 105 deletions

File diff suppressed because one or more lines are too long

View File

@ -33,8 +33,8 @@ $grid-column-width:$grid-row-width/$grid-column-count;
// aside sigle post format // aside sigle post format
.format-aside{ .format-aside{
@include breakpoint(small) { @include breakpoint(small) {
.entry-content { // .entry-content {
} // }
} }
@include breakpoint(medium) { @include breakpoint(medium) {
.entry-title{ .entry-title{
@ -53,10 +53,8 @@ $grid-column-width:$grid-row-width/$grid-column-count;
// presentation as home and category archive // presentation as home and category archive
.home,.archive{ .home,.archive{
.main-container { .main-container {
// @include xy-grid-container(100vw,0);
@include xy-grid-container(100vw,$global-padding*2); @include xy-grid-container(100vw,$global-padding*2);
overflow: hidden; overflow: hidden;
.main-grid {
.main-content { .main-content {
@include xy-cell(12,padding,0); @include xy-cell(12,padding,0);
.bfr_category_archive { .bfr_category_archive {
@ -109,14 +107,27 @@ $grid-column-width:$grid-row-width/$grid-column-count;
@include breakpoint(medium) { @include breakpoint(medium) {
float: left; float: left;
max-width: 60%; max-width: 60%;
a.button{
position: absolute;
bottom: 0;
}
} }
} }
.post-excerpt { .post-excerpt {
@include breakpoint(small) {
max-height: 14rem; max-height: 14rem;
overflow: hidden; overflow: hidden;
margin-bottom: $global-margin * 1.2; margin-bottom: $global-margin * 1.2;
} }
@include breakpoint(medium) {
margin-bottom: 3.5rem;
}
}
.button { .button {
@include breakpoint(small) {
}
@include breakpoint(medium) {
}
background-color:$primary-color; background-color:$primary-color;
color:$secondary-color; color:$secondary-color;
&:hover{ &:hover{
@ -127,13 +138,26 @@ $grid-column-width:$grid-row-width/$grid-column-count;
@include breakpoint(medium){ @include breakpoint(medium){
position: relative; position: relative;
min-height: 100%; min-height: 100%;
.post-excerpt{ }//end medium
margin-bottom: 3.5rem;
} }
footer a.button{ .category-photos-archive,.format-gallery,.post_format-post-format-gallery {
position: absolute; .bfr_post_thumbnail {
bottom: 0; float:none;
max-width:unset;
overflow:hidden;
@include breakpoint(small) {
max-height: ( 100vw / 2 );
} }
@include breakpoint(medium) {
max-height: ( 100vw / 3 );
}
@include breakpoint(large) {
max-height: ( 100vw / 5 );
}
@include breakpoint(xlarge) {
}
img {
width: 100%;
} }
} }
} }
@ -142,4 +166,93 @@ $grid-column-width:$grid-row-width/$grid-column-count;
.bfr_category_title{ .bfr_category_title{
display:none; display:none;
} }
// homepage 2021
.homepage-2021 { //&.main-container
.entry-content {
position: relative;
& > * {
float:left;
clear:both;
margin-left: $global-margin;
}
}
.fp-gallery {
position:absolute;
top:0;
right: 0;
// .fp-gallery-item {
// }
// .fp-gallery-icon {
// }
img {
object-fit: cover;
object-position: center;
border-radius: $button-radius;
}
}
@include breakpoint(small) {
$homepage2021-gallery-square-side: $global-margin*8;
$homepage2021-gallery-square-size: $homepage2021-gallery-square-side+$global-margin;
.entry-content {
min-height: $homepage2021-gallery-square-size*14;
& > * {
max-width: 55%;
}
}
.fp-gallery {
max-width: 40%;
.fp-gallery-item {
width: $homepage2021-gallery-square-side;
}
// .fp-gallery-icon {
// }
img {
height: $homepage2021-gallery-square-side;
}
}
}
@include breakpoint(medium) {
$homepage2021-gallery-square-side: $global-margin*8;
$homepage2021-gallery-square-size: $homepage2021-gallery-square-side+$global-margin;
.entry-content {
min-height: $homepage2021-gallery-square-size*7;
& > * {
max-width: 48%;
}
}
.fp-gallery {
max-width: 45%;
.fp-gallery-item {
width: $homepage2021-gallery-square-side;
}
// .fp-gallery-icon {
// }
img {
height: $homepage2021-gallery-square-side;
}
}
}
@include breakpoint(xlarge) {
$homepage2021-gallery-square-side: $global-margin*9;
$homepage2021-gallery-square-size: $homepage2021-gallery-square-side+$global-margin;
.entry-content {
min-height: $homepage2021-gallery-square-size*6;
& > * {
max-width: 48%;
}
}
.fp-gallery {
max-width: 45%;
.fp-gallery-item {
width: $homepage2021-gallery-square-side;
}
// .fp-gallery-icon {
// }
img {
height: $homepage2021-gallery-square-side;
}
}
}
}
} }