Compare commits

..

No commits in common. "b64b7836fa8f1ad65c66cc973ba872e3e5298aeb" and "4b3863e0d10e14acf13daacc2ea3e024c2d23968" have entirely different histories.

3 changed files with 4 additions and 16 deletions

View File

@ -14,7 +14,7 @@ body {
background-color: var(--background-1); background-color: var(--background-1);
color: var(--foreground-1); color: var(--foreground-1);
font-size: 1.5rem; font-size: 2rem;
} }
a, a,
@ -28,11 +28,6 @@ a:visited {
} }
} }
img {
display: block;
width: 100%;
}
h1, h1,
h2, h2,
h3, h3,

View File

@ -11,25 +11,19 @@
.page-header, .page-header,
.page-main, .page-main,
.page-footer { .page-footer {
@include responsive-container(900px); @include responsive-container(1200px);
margin-bottom: var(--large-spacing); margin-bottom: var(--large-spacing);
padding: var(--large-spacing);
} }
.page-header { .page-header {
border-bottom: 4px solid var(--background-2); border-bottom: 4px solid var(--background-2);
padding: var(--large-spacing);
} }
.page-main { .page-main {
h2, h2 {
img,
p {
margin-bottom: var(--medium-spacing); margin-bottom: var(--medium-spacing);
&:last-child {
margin-bottom: 0;
}
} }
} }
@ -38,5 +32,4 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: var(--large-spacing); gap: var(--large-spacing);
padding: var(--large-spacing);
} }