Compare commits

..

4 Commits

Author SHA1 Message Date
Bauke b64b7836fa
Rename Dockerfile to Containerfile. 2022-10-07 15:55:29 +02:00
Bauke b444512c3b
Reduce font-size, padding and width. 2022-10-07 15:54:59 +02:00
Bauke 6fa9c64e84
Remove margin from last child. 2022-10-07 15:33:13 +02:00
Bauke 02acbda94c
Fix image width and add margins. 2022-10-07 15:31:36 +02:00
3 changed files with 16 additions and 4 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: 2rem; font-size: 1.5rem;
} }
a, a,
@ -28,6 +28,11 @@ a:visited {
} }
} }
img {
display: block;
width: 100%;
}
h1, h1,
h2, h2,
h3, h3,

View File

@ -11,19 +11,25 @@
.page-header, .page-header,
.page-main, .page-main,
.page-footer { .page-footer {
@include responsive-container(1200px); @include responsive-container(900px);
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;
}
} }
} }
@ -32,4 +38,5 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: var(--large-spacing); gap: var(--large-spacing);
padding: var(--large-spacing);
} }