diff options
author | hitlerrip <git@hitler.rip> | 2025-07-29 10:57:22 +0200 |
---|---|---|
committer | hitlerrip <git@hitler.rip> | 2025-07-29 10:57:22 +0200 |
commit | 6a628110fef7c20e9c984287781c56b951f476b9 (patch) | |
tree | b38df494c9b3a203d59c29a5393ce27efe51ae79 /con/style.css | |
parent | 85a3ff98423502e1aeaf5f08868d38090df9fdf1 (diff) | |
download | website-6a628110fef7c20e9c984287781c56b951f476b9.tar.gz website-6a628110fef7c20e9c984287781c56b951f476b9.tar.bz2 website-6a628110fef7c20e9c984287781c56b951f476b9.zip |
article list improvements
- styled article list
- added dynamically generated article list to markdown index
- (initial run.sh)
Diffstat (limited to 'con/style.css')
-rw-r--r-- | con/style.css | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/con/style.css b/con/style.css index df54508..d417ce8 100644 --- a/con/style.css +++ b/con/style.css @@ -65,6 +65,9 @@ footer { text-align: center; color: #6c7086; margin: 15px 0 15px 0; + @media (width < 48rem) { + margin: 15px 25px 15px 25px; + } } footer hr { color: #6c7086; @@ -80,7 +83,6 @@ footer a { color: #6c7086; } - main { display: flex; align-items: center; @@ -90,6 +92,7 @@ main { } main > div { width: 100%; + margin: 0 25px 0 25px; @media (width >= 48rem) { max-width: 700px; } @@ -206,3 +209,12 @@ img { margin-left: auto; margin-right: auto; } + +article { + border: 2px solid #45475a; + padding: 10px; + margin-bottom: 10px; +} +article p { + text-align: center; +} |