1
0

Add profile picture

This commit is contained in:
Emil Miler 2025-05-06 11:33:53 +02:00
parent 6b245f540d
commit a2b355477f
3 changed files with 14 additions and 1 deletions

View File

@ -4,7 +4,9 @@ title = "About"
notoc = true notoc = true
+++ +++
This is my personal website mainly used for technical articles about problems and projects I am working on. <img src="profile-picture.jpg" alt="Profile Picture" class="profile-picture">
This is my personal website mainly used for technical articles about problems and projects I&nbsp;am working on.
It is generated to static HTML via [Zola](https://www.getzola.org/). It is generated to static HTML via [Zola](https://www.getzola.org/).

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -211,6 +211,12 @@ a {
&:hover { text-decoration: underline } &:hover { text-decoration: underline }
} }
.profile-picture {
float: right;
width: 15rem;
margin-left: 3em;
}
@media screen and (max-width: 50rem) { @media screen and (max-width: 50rem) {
.grid { grid-template-columns: auto } .grid { grid-template-columns: auto }
@ -230,6 +236,11 @@ a {
} }
span.title { display: none } span.title { display: none }
} }
.profile-picture {
width: 10rem;
margin-left: 1em;
}
} }
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {