chore: format

This commit is contained in:
Ayo Ayco 2024-08-14 16:20:44 +02:00
parent 25d04c7868
commit fd20540869
2 changed files with 28 additions and 7 deletions

View file

@ -95,7 +95,6 @@ const posts = (await getCollection('blog')).sort(
<li> <li>
<a href={`/blog/${post.slug}/`}> <a href={`/blog/${post.slug}/`}>
{ {
post.data.heroImage post.data.heroImage
? <img width={720} height={360} src={post.data.heroImage} alt="" /> ? <img width={720} height={360} src={post.data.heroImage} alt="" />
: <img width={720} height={360} src="/blog-placeholder-4.jpg" alt="" /> : <img width={720} height={360} src="/blog-placeholder-4.jpg" alt="" />

View file

@ -15,6 +15,7 @@
--box-shadow: 0 2px 6px rgba(var(--gray), 25%), 0 8px 24px rgba(var(--gray), 33%), --box-shadow: 0 2px 6px rgba(var(--gray), 25%), 0 8px 24px rgba(var(--gray), 33%),
0 16px 32px rgba(var(--gray), 33%); 0 16px 32px rgba(var(--gray), 33%);
} }
@font-face { @font-face {
font-family: 'Atkinson'; font-family: 'Atkinson';
src: url('/fonts/atkinson-regular.woff') format('woff'); src: url('/fonts/atkinson-regular.woff') format('woff');
@ -22,6 +23,7 @@
font-style: normal; font-style: normal;
font-display: swap; font-display: swap;
} }
@font-face { @font-face {
font-family: 'Atkinson'; font-family: 'Atkinson';
src: url('/fonts/atkinson-bold.woff') format('woff'); src: url('/fonts/atkinson-bold.woff') format('woff');
@ -29,6 +31,7 @@
font-style: normal; font-style: normal;
font-display: swap; font-display: swap;
} }
body { body {
font-family: 'Atkinson', sans-serif; font-family: 'Atkinson', sans-serif;
margin: 0; margin: 0;
@ -43,12 +46,14 @@ body {
line-height: 1.7; line-height: 1.7;
} }
main { main {
width: 720px; width: 720px;
max-width: calc(100% - 2em); max-width: calc(100% - 2em);
margin: auto; margin: auto;
padding: 3em 1em; padding: 3em 1em;
} }
h1, h1,
h2, h2,
h3, h3,
@ -59,28 +64,36 @@ h6 {
color: rgb(var(--black)); color: rgb(var(--black));
line-height: 1.2; line-height: 1.2;
} }
h1 { h1 {
font-size: 3.052em; font-size: 3.052em;
} }
h2 { h2 {
font-size: 2.441em; font-size: 2.441em;
} }
h3 { h3 {
font-size: 1.953em; font-size: 1.953em;
} }
h4 { h4 {
font-size: 1.563em; font-size: 1.563em;
} }
h5 { h5 {
font-size: 1.25em; font-size: 1.25em;
} }
strong, strong,
b { b {
font-weight: 700; font-weight: 700;
} }
a { a {
color: var(--accent); color: var(--accent);
} }
a:hover { a:hover {
color: var(--accent); color: var(--accent);
} }
@ -92,13 +105,12 @@ table {
margin-bottom: 1em; margin-bottom: 1em;
} }
.prose .prose {
{
& p, & p,
& ul, & ul,
& ol, & ol,
& table & table {
{
margin-bottom: 2em; margin-bottom: 2em;
} }
} }
@ -107,43 +119,53 @@ textarea {
width: 100%; width: 100%;
font-size: 16px; font-size: 16px;
} }
input { input {
font-size: 16px; font-size: 16px;
} }
table { table {
width: 100%; width: 100%;
} }
img { img {
max-width: 100%; max-width: 100%;
height: auto; height: auto;
border-radius: 8px; border-radius: 8px;
} }
code { code {
padding: 2px 5px; padding: 2px 5px;
background-color: rgb(var(--gray-light)); background-color: rgb(var(--gray-light));
border-radius: 2px; border-radius: 2px;
} }
pre { pre {
padding: 1.5em; padding: 1.5em;
border-radius: 8px; border-radius: 8px;
} }
pre > code {
pre>code {
all: unset; all: unset;
} }
blockquote { blockquote {
border-left: 4px solid var(--accent); border-left: 4px solid var(--accent);
padding: 0 0 0 20px; padding: 0 0 0 20px;
margin: 0px; margin: 0px;
font-size: 1.333em; font-size: 1.333em;
} }
hr { hr {
border: none; border: none;
border-top: 1px solid rgb(var(--gray-light)); border-top: 1px solid rgb(var(--gray-light));
} }
@media (max-width: 720px) { @media (max-width: 720px) {
body { body {
font-size: 18px; font-size: 18px;
} }
main { main {
padding: 1em; padding: 1em;
} }
@ -165,4 +187,4 @@ hr {
clip-path: inset(50%); clip-path: inset(50%);
/* added line to stop words getting smushed together (as they go onto separate lines and some screen readers do not understand line feeds as a space */ /* added line to stop words getting smushed together (as they go onto separate lines and some screen readers do not understand line feeds as a space */
white-space: nowrap; white-space: nowrap;
} }