diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2023-11-14 02:57:10 +0100 | 
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2023-11-14 02:57:10 +0100 | 
| commit | ebb2e8d6e7a981bf35c5df6d5b4ce5d9ec0429cb (patch) | |
| tree | 4a0f814fd0bf32f0c60cce7365b40e9069182521 /src | |
| parent | 806ad9da7a8da5abbe353169ddadc5357779130c (diff) | |
Add dates to blog posts
Diffstat (limited to 'src')
| -rw-r--r-- | src/srp/index.gsp | 4 | ||||
| -rw-r--r-- | src/style.css | 11 | 
2 files changed, 11 insertions, 4 deletions
| diff --git a/src/srp/index.gsp b/src/srp/index.gsp index f829644..ae8e597 100644 --- a/src/srp/index.gsp +++ b/src/srp/index.gsp @@ -29,8 +29,8 @@ html lang="en" {  			p {-Posts:}  			ul { -				li {a href="gsp" {-Writing an HTML Preprocessor (feat. Tree-Sitter)}} -				li {a href="fw-ec" {-Patching My Laptop’s Embedded Controller}} +				m4_article(gsp, {-Writing an HTML Preprocessor (feat. Tree-Sitter)}) +				m4_article(fw-ec, {-Patching My Laptop’s Embedded Controller})  			}  		} diff --git a/src/style.css b/src/style.css index b642fad..753de28 100644 --- a/src/style.css +++ b/src/style.css @@ -201,7 +201,12 @@ dl {  .gsp-val  { color: var(--aqua);   }  .gsp-op   { color: var(--lesser); } -@media (min-width: 40em) { +.article { +	display: flex; +	justify-content: space-between; +} + +@media (min-width: 800px) {  	body {  		font-size: 1.3rem;  		line-height: 1.5; @@ -267,11 +272,13 @@ dl {  	abbr.xml::before  { content: 'Extensible Markup Language';   }  } -@media (max-width: 40em) { +@media (max-width: 600px) {  	body         { tab-size: 4; }  	main         { margin-block-end: 2rem; }  	h1, h2, p    { overflow-wrap: break-word; hyphens: auto; }  	header > div { display: block; }  	ul, menu     { padding-inline-start: 0; }  	:where(ul, menu) > li:not(:last-of-type) { margin-block-end: .3rem; } +	.article { display: block; } +	.article > * { display: block; }  } |