add paragraph padding

This commit is contained in:
2026-06-16 16:04:14 +02:00
parent fb273da418
commit 75af18ae85
6 changed files with 44 additions and 37 deletions
-1
View File
@@ -12,7 +12,6 @@
.article { .article {
display: grid; display: grid;
gap: var(--large-padding);
grid-template-columns: 1fr; grid-template-columns: 1fr;
grid-template-rows: auto auto; grid-template-rows: auto auto;
width: 100%; width: 100%;
+38 -31
View File
@@ -15,37 +15,44 @@
{% block content %} {% block content %}
<div> <div>
<b>Hello there,</b><br> <p><b>Hello there,</b></p>
<br> <p>my name is Tobias Erbshäußer and I'm programming now for roughly two decades.</p>
my name is Tobias Erbshäußer and I'm programming now for roughly two decades.<br> <p>
<br> What started of with a small book about C programming has become a great activity that I'm practicing nearly
What started of with a small book about C programming has become a great activity that I'm practicing nearly every day.
every day.<br> </p>
<br> <p>
Throughout the years I've tried many languages. Throughout the years I've tried many languages.
C was quickly replaced with the C was quickly replaced with the
<a href="https://www.autoitscript.com/site/autoit/" target="_blank" rel="noopener noreferrer">AutoIt scripting language</a> <a href="https://www.autoitscript.com/site/autoit/" target="_blank" rel="noopener noreferrer">AutoIt
which was simply more convenient for the first project: scripting language</a>
A bot for <a href="https://www.guildwars.com/de/" target="_blank" rel="noopener noreferrer">Guild Wars</a> that which was simply more convenient for the first project:
automated the consumption of liquor to get an ingame title. A bot for <a href="https://www.guildwars.com/de/" target="_blank" rel="noopener noreferrer">Guild Wars</a>
I still remember the afternoons I spent with my best friend to fix all the little bugs the first version had. that automated the consumption of liquor to get an ingame title.
Later, AutoIt was replaced by Pascal, then came Delphi/Lazarus and my horizon continued to expand. I still remember the afternoons I spent with my best friend to fix all the little bugs the first version
I dipped my toe into text editor development, cheating software, DLL injections, databases and all kinds of had.
other stuff. Later, AutoIt was replaced by Pascal, then came Delphi/Lazarus and my horizon continued to expand.
During my studies at the TU Darmstadt I dipped my toe into text editor development, cheating software, DLL injections, databases and all kinds of
<a href="https://racket-lang.org/" target="_blank" rel="noopener noreferrer">Racket</a> and Java joined the mix other stuff.
- the former which I was never a fan of. During my studies at the TU Darmstadt
C++ also had its appearance along the way and all the "newer" languages such as Kotlin, C#, D, Nim and Rust.<br> <a href="https://racket-lang.org/" target="_blank" rel="noopener noreferrer">Racket</a> and Java joined the
<br> mix - the former which I was never a fan of.
Today at my job, I'm mostly working on embedded projects using C, C++, Python and Bash scripts. C++ also had its appearance along the way and all the "newer" languages such as Kotlin, C#, D, Nim and Rust.
Sometimes I even have the chance to revitalize and broaden the little bit of Linux kernel knowledge I gained </p>
during my Bachelor and Master thesis.<br> <p>
<br> Today at my job, I'm mostly working on embedded projects using C, C++, Python and Bash scripts.
Additionally, I've created and maintain the new Sometimes I even have the chance to revitalize and broaden the little bit of Linux kernel knowledge I gained
<a href="https://schanz-online.de/" target="_blank" rel="noopener noreferrer">SCHANZ Website</a> (a small bar during my Bachelor and Master thesis.
and event location) and the backend behind it.<br> </p>
<br> <p>
Aside from all the computer work, I hear a lot of music, play on my guitars, read books, swim or ride the bike. Additionally, I've created and maintain the new
<a href="https://schanz-online.de/" target="_blank" rel="noopener noreferrer">SCHANZ Website</a> (a small
bar and event location) and the backend behind it.
</p>
<p>
Aside from all the computer work, I hear a lot of music, play on my guitars, read books, swim or ride the
bike.
</p>
</div> </div>
<div class="me"> <div class="me">
<img src="/assets/me.jpg" alt="An image of myself"> <img src="/assets/me.jpg" alt="An image of myself">
+1 -1
View File
@@ -16,7 +16,7 @@
{% block content %} {% block content %}
<h3>Welcome</h3> <h3>Welcome</h3>
Welcome to my website. On this you can find my projects, a blog and information about me. Welcome to my website. Here you can find my projects, a blog and information about me.
<h4>Current projects</h4> <h4>Current projects</h4>
<div class="projects"> <div class="projects">
-3
View File
@@ -1,3 +0,0 @@
/*tesoft-blog-article {
min-height: calc(100vh - 8rem);
}*/
+4
View File
@@ -86,3 +86,7 @@ h5 {
line-height: 2.6rem; line-height: 2.6rem;
padding-bottom: 1rem; padding-bottom: 1rem;
} }
p {
padding-bottom: var(--medium-padding);
}
+1 -1
View File
@@ -1,5 +1,5 @@
h4 { h4 {
padding-top: var(--large-padding); padding-top: calc(var(--large-padding) * 2);
} }
.projects { .projects {