diff --git a/frontend/src/components/blog-article.njk b/frontend/src/components/blog-article.njk
index c62845f..c4337bb 100644
--- a/frontend/src/components/blog-article.njk
+++ b/frontend/src/components/blog-article.njk
@@ -12,7 +12,6 @@
.article {
display: grid;
- gap: var(--large-padding);
grid-template-columns: 1fr;
grid-template-rows: auto auto;
width: 100%;
diff --git a/frontend/src/pages/about.njk b/frontend/src/pages/about.njk
index af97a06..059c452 100644
--- a/frontend/src/pages/about.njk
+++ b/frontend/src/pages/about.njk
@@ -15,37 +15,44 @@
{% block content %}
-
Hello there,
-
- my name is Tobias Erbshäußer and I'm programming now for roughly two decades.
-
- What started of with a small book about C programming has become a great activity that I'm practicing nearly
- every day.
-
- Throughout the years I've tried many languages.
- C was quickly replaced with the
-
AutoIt scripting language
- which was simply more convenient for the first project:
- A bot for
Guild Wars that
- automated the consumption of liquor to get an ingame title.
- I still remember the afternoons I spent with my best friend to fix all the little bugs the first version had.
- Later, AutoIt was replaced by Pascal, then came Delphi/Lazarus and my horizon continued to expand.
- I dipped my toe into text editor development, cheating software, DLL injections, databases and all kinds of
- other stuff.
- During my studies at the TU Darmstadt
-
Racket and Java joined the mix
- - the former which I was never a fan of.
- C++ also had its appearance along the way and all the "newer" languages such as Kotlin, C#, D, Nim and Rust.
-
- Today at my job, I'm mostly working on embedded projects using C, C++, Python and Bash scripts.
- Sometimes I even have the chance to revitalize and broaden the little bit of Linux kernel knowledge I gained
- during my Bachelor and Master thesis.
-
- Additionally, I've created and maintain the new
-
SCHANZ Website (a small bar
- and event location) and the backend behind it.
-
- Aside from all the computer work, I hear a lot of music, play on my guitars, read books, swim or ride the bike.
+
Hello there,
+
my name is Tobias Erbshäußer and I'm programming now for roughly two decades.
+
+ What started of with a small book about C programming has become a great activity that I'm practicing nearly
+ every day.
+
+
+ Throughout the years I've tried many languages.
+ C was quickly replaced with the
+ AutoIt
+ scripting language
+ which was simply more convenient for the first project:
+ A bot for Guild Wars
+ that automated the consumption of liquor to get an ingame title.
+ I still remember the afternoons I spent with my best friend to fix all the little bugs the first version
+ had.
+ Later, AutoIt was replaced by Pascal, then came Delphi/Lazarus and my horizon continued to expand.
+ I dipped my toe into text editor development, cheating software, DLL injections, databases and all kinds of
+ other stuff.
+ During my studies at the TU Darmstadt
+ Racket and Java joined the
+ mix - the former which I was never a fan of.
+ C++ also had its appearance along the way and all the "newer" languages such as Kotlin, C#, D, Nim and Rust.
+
+
+ Today at my job, I'm mostly working on embedded projects using C, C++, Python and Bash scripts.
+ Sometimes I even have the chance to revitalize and broaden the little bit of Linux kernel knowledge I gained
+ during my Bachelor and Master thesis.
+
+
+ Additionally, I've created and maintain the new
+ SCHANZ Website (a small
+ bar and event location) and the backend behind it.
+
+
+ Aside from all the computer work, I hear a lot of music, play on my guitars, read books, swim or ride the
+ bike.
+

diff --git a/frontend/src/pages/index.njk b/frontend/src/pages/index.njk
index 8f7fc6c..45016cb 100644
--- a/frontend/src/pages/index.njk
+++ b/frontend/src/pages/index.njk
@@ -16,7 +16,7 @@
{% block content %}
Welcome
- 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.
Current projects
diff --git a/frontend/src/styles/blog.css b/frontend/src/styles/blog.css
index bb6776b..e69de29 100644
--- a/frontend/src/styles/blog.css
+++ b/frontend/src/styles/blog.css
@@ -1,3 +0,0 @@
-/*tesoft-blog-article {
- min-height: calc(100vh - 8rem);
-}*/
diff --git a/frontend/src/styles/default.css b/frontend/src/styles/default.css
index 50df398..eb95fb3 100644
--- a/frontend/src/styles/default.css
+++ b/frontend/src/styles/default.css
@@ -86,3 +86,7 @@ h5 {
line-height: 2.6rem;
padding-bottom: 1rem;
}
+
+p {
+ padding-bottom: var(--medium-padding);
+}
diff --git a/frontend/src/styles/index.css b/frontend/src/styles/index.css
index 43885f7..1bfcd94 100644
--- a/frontend/src/styles/index.css
+++ b/frontend/src/styles/index.css
@@ -1,5 +1,5 @@
h4 {
- padding-top: var(--large-padding);
+ padding-top: calc(var(--large-padding) * 2);
}
.projects {