styled title in mid size

This commit is contained in:
jorge 2022-12-28 20:49:30 +01:00
parent d8c7b2d45a
commit b193fbef4a
4 changed files with 27 additions and 1 deletions

View File

@ -11,3 +11,9 @@ $columns: (
); );
$columns__margin: 3.8%; $columns__margin: 3.8%;
//grid properties
$grid__gap: 1rem;
$grid__column-gap: $grid__gap;
$grid__row-gap: $grid__gap;

View File

@ -66,8 +66,17 @@
.no-sidebar { .no-sidebar {
.site { .site {
padding: 0 2rem; padding: 0 2rem;
.archive-posts {
display: grid;
grid-template-columns: repeat(4 , 1fr);
gap: $grid__gap;
}
} }
.site-header { .site-header {
height: 12rem;
&::after {
top: 12rem;
}
.main { .main {
flex-flow: column; flex-flow: column;
border-bottom: 1px solid $color__grey-lighter; border-bottom: 1px solid $color__grey-lighter;

View File

@ -783,6 +783,17 @@ textarea {
.no-sidebar .site { .no-sidebar .site {
padding: 0 2rem; padding: 0 2rem;
} }
.no-sidebar .site .archive-posts {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1rem;
}
.no-sidebar .site-header {
height: 12rem;
}
.no-sidebar .site-header::after {
top: 12rem;
}
.no-sidebar .site-header .main { .no-sidebar .site-header .main {
flex-flow: column; flex-flow: column;
border-bottom: 1px solid #eee; border-bottom: 1px solid #eee;

File diff suppressed because one or more lines are too long