diff options
| author | Ahmed Abdelhalim <[email protected]> | 2024-03-05 05:15:35 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2024-03-05 05:15:35 +0200 |
| commit | c1fcf759d48b374f54b1c7ae5381170316c26121 (patch) | |
| tree | 9c7fefd4c98aecdd559a48c245ee65c6cde4559c | |
| parent | d3857e05085521c7b211d0f43a377e991c9c0dd2 (diff) | |
Minor fixes to styles and links
| -rw-r--r-- | assets/scss/web/_base.scss | 1 | ||||
| -rw-r--r-- | assets/scss/web/_blog.scss | 7 | ||||
| -rw-r--r-- | data/home/index.yaml | 1 | ||||
| -rw-r--r-- | data/home/work.yaml | 2 | ||||
| -rw-r--r-- | layouts/partials/home/header.html | 2 |
5 files changed, 10 insertions, 3 deletions
diff --git a/assets/scss/web/_base.scss b/assets/scss/web/_base.scss index f771041..bdea382 100644 --- a/assets/scss/web/_base.scss +++ b/assets/scss/web/_base.scss @@ -28,7 +28,6 @@ body { min-width: 375px; margin: 0 auto; float: none; - line-height: 1.5; font-size: 18px; @media (max-width: 812px) and (orientation: landscape), (max-width: 375px) { diff --git a/assets/scss/web/_blog.scss b/assets/scss/web/_blog.scss index 695a363..9770c46 100644 --- a/assets/scss/web/_blog.scss +++ b/assets/scss/web/_blog.scss @@ -21,6 +21,9 @@ h1, h2, h3, h4, h5, h6 { margin-bottom: 0px; } + h1 { + font-size: 2rem; + } blockquote { margin-left: 0; margin-right: 30px; @@ -28,4 +31,8 @@ border-left-width: 4px; border-left-style: solid; } + pre { + font-size: 1rem; + line-height: 1; + } } diff --git a/data/home/index.yaml b/data/home/index.yaml index f62b485..5674edd 100644 --- a/data/home/index.yaml +++ b/data/home/index.yaml @@ -3,6 +3,7 @@ Meta: Title: Platform Engineer ยท DevOps Location: Berlin, Germany Email: [email protected] + Website: https://a14m.dev Srht: https://git.sr.ht/~a14m Github: https://github.com/a14m StackOverflow: https://stackoverflow.com/users/1769515/a14m diff --git a/data/home/work.yaml b/data/home/work.yaml index 055699c..7972b9b 100644 --- a/data/home/work.yaml +++ b/data/home/work.yaml @@ -9,7 +9,7 @@ Work: - Improvements on pipelines' stability (10% less failures due to pipeline issues). - Identified problems with pipeline architecture, and created the project specification for fixing them. - Supported other teams on refactoring, and architecting pipelines for better stability/performance. - - Rewrote parts of the pipeline in <a href="https://go.dev/">Go</a>/Docker to improve performance, stability, + - Rewrote parts of the pipeline in <a href="https://go.dev/">golang</a>/Docker to improve performance, stability, and releases LTS. - Daily buisness of providing (L2/L3) support for other teams as part of the build enablement team. diff --git a/layouts/partials/home/header.html b/layouts/partials/home/header.html index 1575c4f..9cc8ef1 100644 --- a/layouts/partials/home/header.html +++ b/layouts/partials/home/header.html @@ -4,7 +4,7 @@ <address class="header__contact-info"> <div class="header__location">{{ .Location }}</div> <div class="header__email"><a href="mailto:{{ .Email }}">{{ .Email }}</a></div> - <div class="header__website"><a href="{{ .Site.BaseURL }}">website</a></div> + <div class="header__website"><a href="{{ .Website }}">website</a></div> <div class="header__srht"><a href="{{ .Srht }}">sr.ht</a></div> <div class="header__github"><a href="{{ .Github }}">Github</a></div> <div class="header__stackoverflow"><a href="{{ .StackOverflow }}">StackOverflow</a></div> |
