Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions assets/theme-css/bulma.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,16 @@
margin: 0 auto;
position: relative;
width: auto;
padding: 0 calc(1.875rem + 1em);
}
@media screen and (min-width: 1024px) {
.container {
max-width: 960px;
max-width: calc(70em + 15em + 1.875rem);
}
}
@media screen and (min-width: 1216px) {
.container {
max-width: 1152px;
max-width: calc(70em + 15em + 1.875rem);
}
}
@media screen and (max-width: 768px) {
Expand Down
15 changes: 11 additions & 4 deletions assets/theme-css/content.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,23 @@
display: flex;
flex-wrap: nowrap;
justify-content: center;
margin: 1em;
margin: 1em auto;
max-width: calc(70em + 15em + 1.875rem);
padding: 0 calc(1.875rem + 1em);
gap: 1.875rem;
}

.content-container {
flex-basis: 70em;
flex-shrink: 1;
flex-direction: column;
margin: 0 1.875rem;
padding: 1rem;
margin: 0;
padding: 1rem 0;
}

/* Handle code cells overflowing */
/* Code blocks handle their own overflow */
.content-container:has(pre),
.content-container:has(.highlight),
.content-container:has(.chroma) {
overflow: auto;
}
22 changes: 15 additions & 7 deletions assets/theme-css/footer.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* Footer */
#footer {
padding: 3rem 1.5rem 6rem;
padding: 3rem 0 6rem;
}

#footer {
Expand All @@ -11,8 +11,9 @@
}

#footer-logo-column {
padding: 1.25rem 5vw;
padding: 1.25rem 0;
font-size: 1rem;
flex: 1;
}

#footer-logo {
Expand All @@ -21,14 +22,17 @@

#footer-columns {
display: flex;
width: 100%;
gap: 6rem;
align-items: flex-start;
}

.footer-column {
padding-left: 0;
margin-top: 1.25rem;
flex-basis: 0;
flex-grow: 1;
flex-shrink: 1;
flex-basis: auto;
flex-grow: 0;
flex-shrink: 0;
}

.footer-item a {
Expand All @@ -52,8 +56,11 @@
}

.footer-actions {
max-width: 25vw;
margin: 1.25rem 1.563rem;
margin: 1.25rem 0;
flex: 1;
display: flex;
flex-direction: column;
align-items: flex-end;
}

.footer-actions > p {
Expand Down Expand Up @@ -116,4 +123,5 @@

.copyright {
font-size: 0.75rem;
text-align: left;
}
Loading