Hamburger menu
All checks were successful
Deploy / deploy (push) Successful in 1m58s

This commit is contained in:
Ariejan de Vroom 2024-08-15 11:53:30 +02:00
parent 6d1e00a63e
commit ac1628d4b6
Signed by: ariejan
GPG Key ID: AD739154F713697B
4 changed files with 123 additions and 61 deletions

File diff suppressed because one or more lines are too long

View File

@ -19,8 +19,9 @@ html, body {
line-height: $line-height; line-height: $line-height;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
transition: color 0.2s ease-in-out, @media screen and (max-width: $mobile-width) {
background-color 0.2s ease-in-out; font-size: 14px;
}
} }
html { html {
@ -66,51 +67,6 @@ a, a:hover {
text-decoration: none; text-decoration: none;
} }
nav {
margin-bottom: 2rem;
text-align: right;
vertical-align: bottom;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
a.brand {
text-align: left;
flex: 1;
display: block;
color: $text;
font-weight: 800;
font-size: 1.6rem;
}
.menu {
flex: 2;
display: flex;
flex-direction: row;
gap: 0.8rem;
justify-content: flex-end;
a {
color: $text;
font-weight: 700;
}
@media screen and (max-width: $mobile-width) {
flex-direction: column;
align-items: flex-end;
gap: 0.4rem;
}
}
}
h1, h2, h3, h4, h5 { h1, h2, h3, h4, h5 {
font-family: "Mulish", sans-serif; font-family: "Mulish", sans-serif;
font-size: $header_size; font-size: $header_size;
@ -146,7 +102,7 @@ blockquote {
img { img {
width: 98%; width: 98%;
border-radius: 1.6rem; border-radius: 0.4rem;
margin: 0 auto; margin: 0 auto;
display: block; display: block;
} }
@ -213,6 +169,65 @@ span.begin-task-list + ul {
header { header {
margin-bottom: 1.5rem; margin-bottom: 1.5rem;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
@media screen and (max-width: $mobile-width) {
margin-bottom: 0;
}
.brand {
flex: 1;
}
button.hamburger {
flex: 1;
justify-content: flex-end;
text-align: right;
display: none;
@media screen and (max-width: $mobile-width) {
display: block;
}
}
nav.menu {
display: block;
flex: 2;
justify-content: flex-end;
display: flex;
flex-direction: row;
gap: 0.8rem;
a {
font-weight: 700;
}
@media screen and (max-width: $mobile-width) {
display: none;
flex-direction: column;
align-items: flex-end;
a {
display: block;
text-align: center;
font-size: 18px;
margin-bottom: 0.4rem;
}
&.is-active {
display: block;
}
}
}
} }
footer { footer {
@ -221,6 +236,10 @@ footer {
display: flex; display: flex;
align-items: center; align-items: center;
@media screen and (max-width: $mobile-width) {
margin: 1.2rem 0;
}
.copyright { .copyright {
flex: 1; flex: 1;
text-align: left; text-align: left;
@ -391,6 +410,10 @@ article.full {
.article-head { .article-head {
margin: 5rem 0; margin: 5rem 0;
@media screen and (max-width: $mobile-width) {
margin: 0.4rem;
}
} }
} }
@ -416,6 +439,10 @@ a.tag {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
@media screen and (max-width: $mobile-width) {
margin: 1.2rem 0;
}
& > * { & > * {
flex: 1; flex: 1;
} }
@ -490,4 +517,11 @@ form {
transition: color 0.2s ease-in-out, transition: color 0.2s ease-in-out,
background-color 0.2s ease-in-out; background-color 0.2s ease-in-out;
} }
}
.mobile-flex-break {
@media screen and (max-width: $mobile-width) {
flex-basis: 100%;
height: 0;
}
} }

View File

@ -1,2 +1,3 @@
@import "_hamburgers";
@import "_colors_light"; @import "_colors_light";
@import "_site"; @import "_site";

File diff suppressed because one or more lines are too long