xarxaprod-wp-theme/sass/layouts/_no-sidebar.scss

141 lines
2.0 KiB
SCSS
Raw Normal View History

2024-01-09 16:13:20 +01:00
@media screen {
.no-sidebar {
}
.site {
display: grid;
grid-template-columns: 1fr minmax(0,35em) minmax(0,35em) 1fr;
grid-template-areas:
"header"
"main"
"aside"
"footer";
margin: auto;
padding: 0;
> header {
grid-column: 1 / -1;
}
> main {
grid-column: 2 / 4;
}
> aside {
grid-column: 2 / 4;
}
> footer {
grid-column: 1 / -1;
}
}
.site-header {
position: sticky;
z-index: 900;
top: 0;
margin-bottom: 2rem;
2024-01-14 17:12:37 +01:00
//background-color: $color__white;
//box-shadow: 0 15px 30px rgba(0,0,0,0.05), 0 1px 0 0 rgba(0,0,0,0.0);
2024-01-09 16:13:20 +01:00
.main {
display: flex;
2024-01-14 17:12:37 +01:00
flex-flow: row;
align-items: center;
2024-01-09 16:13:20 +01:00
justify-content: space-around;
}
.secondary {
display: flex;
flex-flow: column;
2024-01-14 17:12:37 +01:00
align-items: center;
2024-01-09 16:13:20 +01:00
}
}
.site-main {
padding: 0 1rem;
}
.site-footer {
}
.home-featured {
padding: 0 1rem;
}
.xarxaprod-destacats,.xarxaprod-featured,.archive-posts {
2024-01-09 16:13:20 +01:00
display: grid;
grid-template-columns: repeat(1 , 1fr);
gap: $grid__gap;
}
}
@media screen and (max-width: 48em) {
//only smaller than 48em
.site-header {
}
.site-main {
}
.site-footer {
}
.page-template-funds-search {
}
.home-featured {
}
}
@media screen and (min-width: 48em) {
//only bigger than 48em
.site {
> header {
}
> main {
}
> aside {
}
> footer {
}
}
.site-header {
.main {
2024-01-14 17:12:37 +01:00
flex-flow: column;
2024-01-09 16:13:20 +01:00
}
.secondary {
2024-01-14 17:12:37 +01:00
//border-top: 1px solid $color__grey-lighter;
2024-01-09 16:13:20 +01:00
}
}
.site-main {
padding: 0 2rem;
}
.site-footer {
}
.home-featured {
padding: 0 2rem;
}
&.single {
.site-main {
2024-01-14 17:12:37 +01:00
//width: 45rem;
2024-01-09 16:13:20 +01:00
margin: 0 auto;
}
}
.xarxaprod-destacats,.xarxaprod-featured,.archive-posts {
2024-01-09 16:13:20 +01:00
grid-template-columns: repeat(4 , 1fr);
}
}
@media screen and (min-width: 80em) {
//only bigger than 80rem
.site {
> header {
}
> main {
}
> aside {
}
> footer {
}
}
.site-header {
.main {
2024-01-14 17:12:37 +01:00
//width: 80em;
2024-01-09 16:13:20 +01:00
margin: auto;
flex-flow: row;
}
.secondary {
}
}
.site-main {
padding: 0;
}
.site-footer {
}
.home-featured {
padding: 0;
}
}