diff --git a/layouts/shortcodes/avatar.html b/layouts/shortcodes/avatar.html index 5a29773..8b08eaf 100644 --- a/layouts/shortcodes/avatar.html +++ b/layouts/shortcodes/avatar.html @@ -1,5 +1,9 @@ +{{ $numOfParams := ( len .Params ) }} +{{ $avatar := "avatar.jpg" }} +{{ if eq $numOfParams 1 }}{{ $avatar := .Get 1 }}{{ end }}
- {{ with .Get "link" }}{{ end }} - - {{ with .Get "link" }}{{ end }} + {{ if eq $numOfParams 2 }}{{ end }} + {{ $path := "/images/" }} {{ with $.Site.Params.imagespath }} {{ $path := ( . ) }}{{ end }} + + {{ if eq $numOfParams 2 }}{{ end }}
diff --git a/static/css/base.css b/static/css/base.css index bd66fc7..5a8416e 100644 --- a/static/css/base.css +++ b/static/css/base.css @@ -129,6 +129,14 @@ img { max-width: 100%; } +img.avatar { + object-fit: cover; + border-radius: 50%; + width: 100px; + height: 100px; + padding: 0.5em; +} + figure { display: block; padding: 1em; diff --git a/static/css/page.css b/static/css/page.css index 3277a7f..6957478 100644 --- a/static/css/page.css +++ b/static/css/page.css @@ -29,7 +29,7 @@ .section__content li { font-size: 1em; list-style-type: none; - line-height: 0.9em; + line-height: 1.1em; } .section__content ul, @@ -105,6 +105,8 @@ border-radius: 1em; width: auto; padding-bottom: 1em; + border-style: solid; + border-width: medium; } .section__headline--modal { @@ -129,7 +131,7 @@ overflow-y: auto; position: relative; align-items: flex-start; - font-size: 0.7em; + font-size: .9em; padding: 1em; } @@ -218,15 +220,6 @@ padding: 0.5em; } -.box--avatar > img, -img.avatar { - object-fit: cover; - border-radius: 50%; - width: 100px; - height: 100px; - padding: 0.5em; -} - .highlight { font-size: 0.7em; align-items: left; @@ -303,24 +296,25 @@ img.avatar { code { font-size: 0.8em; font-family: Inconsolata; - background-color: dimgrey; + background-color: black; border-radius: 0.2em; color: white; padding-left: 0.2em; padding-right: 0.2em; padding-top: 0.05em; - padding-bottom: 0.05em; + padding-bottom: 0.3em; } code.hljs { font-size: 0.75em; border-radius: 0.2em; - background-color: dimgrey; + background-color: black; color: white; padding: 1em; margin-bottom: 0.7em; width: inherit; max-width: 90vw; - border-width: 10px; - border-color: blue; + border-style: solid; + border-width: 3px; + border-color: dimgrey; }