diff options
Diffstat (limited to 'served/styles')
-rwxr-xr-x[-rw-r--r--] | served/styles/common.css | 0 | ||||
-rwxr-xr-x[-rw-r--r--] | served/styles/home.css | 47 | ||||
-rwxr-xr-x[-rw-r--r--] | served/styles/post.css | 8 |
3 files changed, 55 insertions, 0 deletions
diff --git a/served/styles/common.css b/served/styles/common.css index 9d2385e..9d2385e 100644..100755 --- a/served/styles/common.css +++ b/served/styles/common.css diff --git a/served/styles/home.css b/served/styles/home.css index 64c534b..be276b2 100644..100755 --- a/served/styles/home.css +++ b/served/styles/home.css @@ -47,6 +47,11 @@ header img { margin-top: 0; } +#notice { + font-style: italic; + text-align: center; +} + .thing-list { padding: 0.5rem 0; margin: 0; @@ -71,6 +76,37 @@ ul.thing-list { max-width: 25rem; } +#changelog { + margin: 0.5rem 1rem; + padding: 1rem 0; + border-top: 1px solid var(--text); +} + +#changelog h2 { + font-size: 1.5rem; + margin-bottom: 0.25rem; + display: inline-block; +} + +#changelog h3 { + font-size: 1rem; + font-weight: normal; + align-self: baseline; + display: inline-block; +} + +#changelog ul { + list-style: none; + padding: 0; + margin: 0; +} + +#changelog time { + color: var(--text-dim); + font-style: italic; + margin-right: 0.5rem; +} + @media (min-width: 40rem) { main { padding: 1rem 0; @@ -88,6 +124,13 @@ ul.thing-list { max-width: 25rem; } + p#notice { + /* there's too much space without this. only on desktop. i think it's + to do with the grid gap */ + margin-bottom: 0rem; + max-width: 100%; + } + #scrap { width: 100%; /* a padding on desktop so it falls below the multimedia heading and @@ -144,4 +187,8 @@ ul.thing-list { width: 15rem; float: right; } + + #changelog { + grid-column: 1 / 3; + } } \ No newline at end of file diff --git a/served/styles/post.css b/served/styles/post.css index 0cc6c82..946336f 100644..100755 --- a/served/styles/post.css +++ b/served/styles/post.css @@ -12,4 +12,12 @@ margin-bottom: 1rem; gap: 1rem; +} + +body { + line-height: 1.5; +} + +p { + margin: 1.25rem 0; } \ No newline at end of file |