2023-02-08 19:36:24 +00:00
|
|
|
.grid {
|
2023-08-18 17:03:38 +01:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 5vw 1fr 5vw;
|
|
|
|
grid-template-rows: min-content 1fr min-content;
|
|
|
|
row-gap: 1rem;
|
2023-02-08 19:36:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#site-header {
|
2023-08-18 17:03:38 +01:00
|
|
|
grid-column: 2 / 3;
|
|
|
|
grid-row: 1 / 2;
|
2023-02-08 19:36:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
2023-08-18 17:03:38 +01:00
|
|
|
grid-column: 2 / 3;
|
|
|
|
grid-row: 2 / 3;
|
2023-02-08 19:36:24 +00:00
|
|
|
}
|
|
|
|
|
2023-11-11 17:28:07 +00:00
|
|
|
.h-feed {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.h-entry {
|
|
|
|
& p:first-of-type,
|
|
|
|
& h1:first-of-type {
|
|
|
|
margin-block-start: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.pagination {
|
|
|
|
margin-block-start: 1rem;
|
|
|
|
}
|
|
|
|
|
2023-02-08 19:36:24 +00:00
|
|
|
footer {
|
2023-08-18 17:03:38 +01:00
|
|
|
grid-column: 2 / 3;
|
|
|
|
grid-row: 3 / 4;
|
2023-02-08 19:36:24 +00:00
|
|
|
|
2023-08-18 17:03:38 +01:00
|
|
|
& .iwc-logo {
|
|
|
|
max-width: 85vw;
|
|
|
|
}
|
2023-10-27 20:22:40 +01:00
|
|
|
|
|
|
|
& .footer-actions {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
gap: 1rem;
|
|
|
|
}
|
2023-02-08 19:36:24 +00:00
|
|
|
}
|