diff options
| author | Francesco <tomaselli.fr@gmail.com> | 2025-05-16 19:34:51 +0200 | 
|---|---|---|
| committer | Francesco <tomaselli.fr@gmail.com> | 2025-05-16 19:34:51 +0200 | 
| commit | ab3d2d785758aebf0da5a59c3aed6a172a71f59d (patch) | |
| tree | b36dcf9b7ab9e4633be6cc7b8b7159f930ed04a6 /assets/css | |
| parent | 02934adef1e55ad9ce16f9eba62d96f69a39e401 (diff) | |
Add author rendering
Diffstat (limited to 'assets/css')
| -rw-r--r-- | assets/css/main.css | 25 | 
1 files changed, 23 insertions, 2 deletions
| diff --git a/assets/css/main.css b/assets/css/main.css index 300bc16..9c4b39e 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -329,8 +329,28 @@ footer a {    margin-bottom: .5rem;  } -.single-readtime { -  margin-top: .5rem; +.single-subsummary { +  margin-top: calc(.8 * var(--p-margin-top)); +  margin-bottom: var(--p-margin-bottom); +  display: flex; +  align-items: center; +} + +.single-subsummary img { +  height: 45px; +  width: 45px; +  margin-right: .7rem; +  border-radius: 50%; +} + +.author { +  margin-bottom: 0; +  margin-top: 0; +} + +.single-date { +  margin-top: 0; +  margin-bottom: 0;    color: var(--content-secondary);  } @@ -351,6 +371,7 @@ footer a {    margin-right: .3rem;  } +  /* Single pagination */  .single-pagination { | 
