styled title in mid size
This commit is contained in:
parent
d8c7b2d45a
commit
b193fbef4a
|
@ -11,3 +11,9 @@ $columns: (
|
|||
);
|
||||
|
||||
$columns__margin: 3.8%;
|
||||
|
||||
//grid properties
|
||||
$grid__gap: 1rem;
|
||||
$grid__column-gap: $grid__gap;
|
||||
$grid__row-gap: $grid__gap;
|
||||
|
||||
|
|
|
@ -66,8 +66,17 @@
|
|||
.no-sidebar {
|
||||
.site {
|
||||
padding: 0 2rem;
|
||||
.archive-posts {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4 , 1fr);
|
||||
gap: $grid__gap;
|
||||
}
|
||||
}
|
||||
.site-header {
|
||||
height: 12rem;
|
||||
&::after {
|
||||
top: 12rem;
|
||||
}
|
||||
.main {
|
||||
flex-flow: column;
|
||||
border-bottom: 1px solid $color__grey-lighter;
|
||||
|
|
11
style.css
11
style.css
|
@ -783,6 +783,17 @@ textarea {
|
|||
.no-sidebar .site {
|
||||
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 {
|
||||
flex-flow: column;
|
||||
border-bottom: 1px solid #eee;
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue