diff --git a/index.html b/index.html
deleted file mode 100644
index 6bb64b1..0000000
--- a/index.html
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
-
-
- Lukas Eisenhauer
-
-
-
-
-
- Home
- Projects
- Impressum
-
-
-
- Projects
- Minosoft
-
-
- Currently, I am developing the rendering engine for an open source, minecraft compatible third party multiplayer client called Minosoft together with my friend
- Bixilon .
-
-
- Tree os
-
-
- Tree os is little side project of mine to learn about the x86 architecture. Also works on real hardware!
-
-
- Websites
-
- This website and Frank Eisenhauer's webpage are made by me.
- Here , I also host a instance of GitBucket, feel free to contact me to create an account there.
-
-
-
- Impressum
- This website is hosted and maintained by Lukas Eisenhauer.
- Address: Kohlröschenstraße 53 80995 München, Deutschland
- You can reach me via:
-
-
-
-
-
diff --git a/index.html b/index.html
deleted file mode 100644
index 6bb64b1..0000000
--- a/index.html
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
-
-
- Lukas Eisenhauer
-
-
-
-
-
- Home
- Projects
- Impressum
-
-
-
- Projects
- Minosoft
-
-
- Currently, I am developing the rendering engine for an open source, minecraft compatible third party multiplayer client called Minosoft together with my friend
- Bixilon .
-
-
- Tree os
-
-
- Tree os is little side project of mine to learn about the x86 architecture. Also works on real hardware!
-
-
- Websites
-
- This website and Frank Eisenhauer's webpage are made by me.
- Here , I also host a instance of GitBucket, feel free to contact me to create an account there.
-
-
-
- Impressum
- This website is hosted and maintained by Lukas Eisenhauer.
- Address: Kohlröschenstraße 53 80995 München, Deutschland
- You can reach me via:
-
-
-
-
-
diff --git a/scripts.js b/scripts.js
deleted file mode 100644
index 73aaa19..0000000
--- a/scripts.js
+++ /dev/null
@@ -1,56 +0,0 @@
-var responsive = false;
-var topOffset;
-
-function navbarAdjust() {
- responsive = window.innerWidth < 600;
- topOffset = $("#nav").height();
- var navbar = document.getElementById("nav");
- var body = document.getElementById("body");
- if (responsive) {
- navbar.className = "responsive";
- body.className = "responsive";
- } else {
- navbar.className = "";
- body.className = "";
- }
-}
-
-function onLinkClick() {
- window.scrollBy(0, -topOffset);
-}
-
-function onScroll() {
- var currentPos = $(window).scrollTop() + topOffset + 5;
- console.log(topOffset);
- $('nav a').each(function() {
- var sectionLink = $(this);
- var section = $(sectionLink.attr('href'));
- if (section.position().top <= currentPos && section.position().top + section.height() >= currentPos) {
- sectionLink.addClass('active');
- }
- else {
- sectionLink.removeClass('active');
- }
- });
-}
-
-function onLoad() {
- navbarAdjust();
- onScroll();
-}
-
-$("nav a").click(function () {
- var speed = 500;
- var easing = 'swing';
-
- var sectionLink = $(this);
- var section = $(sectionLink.attr('href'));
-
- var target = section.position().top - $('nav').height();
- $("html, body").animate({scrollTop: target, speed, easing});
- return false;
-});
-
-$(window).on("scroll", onScroll);
-
-onLoad();
\ No newline at end of file
diff --git a/index.html b/index.html
deleted file mode 100644
index 6bb64b1..0000000
--- a/index.html
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
-
-
- Lukas Eisenhauer
-
-
-
-
-
- Home
- Projects
- Impressum
-
-
-
- Projects
- Minosoft
-
-
- Currently, I am developing the rendering engine for an open source, minecraft compatible third party multiplayer client called Minosoft together with my friend
- Bixilon .
-
-
- Tree os
-
-
- Tree os is little side project of mine to learn about the x86 architecture. Also works on real hardware!
-
-
- Websites
-
- This website and Frank Eisenhauer's webpage are made by me.
- Here , I also host a instance of GitBucket, feel free to contact me to create an account there.
-
-
-
- Impressum
- This website is hosted and maintained by Lukas Eisenhauer.
- Address: Kohlröschenstraße 53 80995 München, Deutschland
- You can reach me via:
-
-
-
-
-
diff --git a/scripts.js b/scripts.js
deleted file mode 100644
index 73aaa19..0000000
--- a/scripts.js
+++ /dev/null
@@ -1,56 +0,0 @@
-var responsive = false;
-var topOffset;
-
-function navbarAdjust() {
- responsive = window.innerWidth < 600;
- topOffset = $("#nav").height();
- var navbar = document.getElementById("nav");
- var body = document.getElementById("body");
- if (responsive) {
- navbar.className = "responsive";
- body.className = "responsive";
- } else {
- navbar.className = "";
- body.className = "";
- }
-}
-
-function onLinkClick() {
- window.scrollBy(0, -topOffset);
-}
-
-function onScroll() {
- var currentPos = $(window).scrollTop() + topOffset + 5;
- console.log(topOffset);
- $('nav a').each(function() {
- var sectionLink = $(this);
- var section = $(sectionLink.attr('href'));
- if (section.position().top <= currentPos && section.position().top + section.height() >= currentPos) {
- sectionLink.addClass('active');
- }
- else {
- sectionLink.removeClass('active');
- }
- });
-}
-
-function onLoad() {
- navbarAdjust();
- onScroll();
-}
-
-$("nav a").click(function () {
- var speed = 500;
- var easing = 'swing';
-
- var sectionLink = $(this);
- var section = $(sectionLink.attr('href'));
-
- var target = section.position().top - $('nav').height();
- $("html, body").animate({scrollTop: target, speed, easing});
- return false;
-});
-
-$(window).on("scroll", onScroll);
-
-onLoad();
\ No newline at end of file
diff --git a/styles.css b/styles.css
deleted file mode 100644
index ab53a1e..0000000
--- a/styles.css
+++ /dev/null
@@ -1,177 +0,0 @@
-:root {
- --white: #ffffff;
-
- --gray_A: #202020;
- --gray_B: #404040;
- --gray_C: #606060;
- --gray_D: #808080;
- --gray_E: #A0A0A0;
- --gray_F: #C0C0C0;
- --gray_G: #E0E0E0;
-
- --black: #000000;
-
- --background1: #164A41;
- --background2: #4D774E;
- --navbar: #303040;
- --text: #F0F3F5;
- --heading: #F1B24A;
- --subheading: #557A5;
- --link: #4a8af1;
- --link-hover: #4a8af1;
-}
-
-html {
- scroll-behavior: smooth;
-}
-
-*, *::before, *::after {
- margin: 0;
- padding: 0;
-}
-a {
- text-decoration: none;
-}
-
-ul {
- list-style-type: none;
-}
-
-body {
- background: linear-gradient(90deg, var(--background1) 0%, var(--background2) 100%);
- font-family: Helvetica;
-}
-
-body#body.responsive {
- margin-top: 230px;
-}
-
-body#body:not(.responsive) {
- margin-top: 50px;
-}
-
-p {
- color: var(--text);
- padding: 10px;
-}
-
-li {
- margin: 10px 10px 10px 10px;
- color: var(--gray_F);
-}
-
-img.align-self {
- align-self: center;
- position: sticky;
- top: 0;
- align-self: flex-start;
-}
-
-.img {
- margin: 10px 10px 10px 10px;
-}
-
-nav {
- background: linear-gradient(90deg, var(--background1) 0%, var(--background2) 100%);
- position: fixed;
- top: 0;
- width: 100%;
- font-size: 20px;
- display: flex;
- justify-content: left;
- align-items: center;
-}
-
-nav:not(.responsive) {
- flex-direction: row;
-}
-
-nav.responsive {
- flex-direction: column;
-}
-
-nav.responsive a {
- width: 90%;
-}
-
-nav a {
- padding-top: 10px;
- padding-bottom: 10px;
- padding-left: 10px;
- padding-right: 10px;
- text-decoration: none;
- color: var(--white);
- border-top: solid transparent 3px;
- transition: border-top 0.5s;
-}
-
-nav a:hover {
- border-top: solid var(--heading);
- color: var(--white);
-}
-
-nav a.active {
- border-top: solid var(--heading);
-}
-
-nav .icon {
- display: none;
-}
-
-h1 {
- color: var(--heading);
- margin-left: 10px;
- font-size: 50px;
- margin-right: 10px;
-}
-
-h2 {
- color: var(--heading);
- margin-left: 10px;
- margin-top: 10px;
- margin-bottom: 10px;
- margin-right: 10px;
-}
-
-h3 {
- color: var(--heading);
- margin-left: 10px;
- margin-top: 10px;
- margin-bottom: 10px;
- margin-right: 10px;
-}
-
-h4 {
- color: var(--white);
- margin-left: 10px;
- margin-top: 10px;
- margin-bottom: 10px;
- margin-right: 10px;
-}
-
-a {
- color: var(--link);
- transition: color 0.5s;
-}
-
-a:hover {
- color: var(--link-hover);
-}
-
-.flex {
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
-}
-
-.fixed-bg {
- min-height: 300px;
- background-attachment: fixed;
- background-position: center;
- background-repeat: no-repeat;
- background-size: cover;
-}
-
-footer {
- background-color: #404040;
-}
\ No newline at end of file
diff --git a/index.html b/index.html
deleted file mode 100644
index 6bb64b1..0000000
--- a/index.html
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
-
-
- Lukas Eisenhauer
-
-
-
-
-
- Home
- Projects
- Impressum
-
-
-
- Projects
- Minosoft
-
-
- Currently, I am developing the rendering engine for an open source, minecraft compatible third party multiplayer client called Minosoft together with my friend
- Bixilon .
-
-
- Tree os
-
-
- Tree os is little side project of mine to learn about the x86 architecture. Also works on real hardware!
-
-
- Websites
-
- This website and Frank Eisenhauer's webpage are made by me.
- Here , I also host a instance of GitBucket, feel free to contact me to create an account there.
-
-
-
- Impressum
- This website is hosted and maintained by Lukas Eisenhauer.
- Address: Kohlröschenstraße 53 80995 München, Deutschland
- You can reach me via:
-
-
-
-
-
diff --git a/scripts.js b/scripts.js
deleted file mode 100644
index 73aaa19..0000000
--- a/scripts.js
+++ /dev/null
@@ -1,56 +0,0 @@
-var responsive = false;
-var topOffset;
-
-function navbarAdjust() {
- responsive = window.innerWidth < 600;
- topOffset = $("#nav").height();
- var navbar = document.getElementById("nav");
- var body = document.getElementById("body");
- if (responsive) {
- navbar.className = "responsive";
- body.className = "responsive";
- } else {
- navbar.className = "";
- body.className = "";
- }
-}
-
-function onLinkClick() {
- window.scrollBy(0, -topOffset);
-}
-
-function onScroll() {
- var currentPos = $(window).scrollTop() + topOffset + 5;
- console.log(topOffset);
- $('nav a').each(function() {
- var sectionLink = $(this);
- var section = $(sectionLink.attr('href'));
- if (section.position().top <= currentPos && section.position().top + section.height() >= currentPos) {
- sectionLink.addClass('active');
- }
- else {
- sectionLink.removeClass('active');
- }
- });
-}
-
-function onLoad() {
- navbarAdjust();
- onScroll();
-}
-
-$("nav a").click(function () {
- var speed = 500;
- var easing = 'swing';
-
- var sectionLink = $(this);
- var section = $(sectionLink.attr('href'));
-
- var target = section.position().top - $('nav').height();
- $("html, body").animate({scrollTop: target, speed, easing});
- return false;
-});
-
-$(window).on("scroll", onScroll);
-
-onLoad();
\ No newline at end of file
diff --git a/styles.css b/styles.css
deleted file mode 100644
index ab53a1e..0000000
--- a/styles.css
+++ /dev/null
@@ -1,177 +0,0 @@
-:root {
- --white: #ffffff;
-
- --gray_A: #202020;
- --gray_B: #404040;
- --gray_C: #606060;
- --gray_D: #808080;
- --gray_E: #A0A0A0;
- --gray_F: #C0C0C0;
- --gray_G: #E0E0E0;
-
- --black: #000000;
-
- --background1: #164A41;
- --background2: #4D774E;
- --navbar: #303040;
- --text: #F0F3F5;
- --heading: #F1B24A;
- --subheading: #557A5;
- --link: #4a8af1;
- --link-hover: #4a8af1;
-}
-
-html {
- scroll-behavior: smooth;
-}
-
-*, *::before, *::after {
- margin: 0;
- padding: 0;
-}
-a {
- text-decoration: none;
-}
-
-ul {
- list-style-type: none;
-}
-
-body {
- background: linear-gradient(90deg, var(--background1) 0%, var(--background2) 100%);
- font-family: Helvetica;
-}
-
-body#body.responsive {
- margin-top: 230px;
-}
-
-body#body:not(.responsive) {
- margin-top: 50px;
-}
-
-p {
- color: var(--text);
- padding: 10px;
-}
-
-li {
- margin: 10px 10px 10px 10px;
- color: var(--gray_F);
-}
-
-img.align-self {
- align-self: center;
- position: sticky;
- top: 0;
- align-self: flex-start;
-}
-
-.img {
- margin: 10px 10px 10px 10px;
-}
-
-nav {
- background: linear-gradient(90deg, var(--background1) 0%, var(--background2) 100%);
- position: fixed;
- top: 0;
- width: 100%;
- font-size: 20px;
- display: flex;
- justify-content: left;
- align-items: center;
-}
-
-nav:not(.responsive) {
- flex-direction: row;
-}
-
-nav.responsive {
- flex-direction: column;
-}
-
-nav.responsive a {
- width: 90%;
-}
-
-nav a {
- padding-top: 10px;
- padding-bottom: 10px;
- padding-left: 10px;
- padding-right: 10px;
- text-decoration: none;
- color: var(--white);
- border-top: solid transparent 3px;
- transition: border-top 0.5s;
-}
-
-nav a:hover {
- border-top: solid var(--heading);
- color: var(--white);
-}
-
-nav a.active {
- border-top: solid var(--heading);
-}
-
-nav .icon {
- display: none;
-}
-
-h1 {
- color: var(--heading);
- margin-left: 10px;
- font-size: 50px;
- margin-right: 10px;
-}
-
-h2 {
- color: var(--heading);
- margin-left: 10px;
- margin-top: 10px;
- margin-bottom: 10px;
- margin-right: 10px;
-}
-
-h3 {
- color: var(--heading);
- margin-left: 10px;
- margin-top: 10px;
- margin-bottom: 10px;
- margin-right: 10px;
-}
-
-h4 {
- color: var(--white);
- margin-left: 10px;
- margin-top: 10px;
- margin-bottom: 10px;
- margin-right: 10px;
-}
-
-a {
- color: var(--link);
- transition: color 0.5s;
-}
-
-a:hover {
- color: var(--link-hover);
-}
-
-.flex {
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
-}
-
-.fixed-bg {
- min-height: 300px;
- background-attachment: fixed;
- background-position: center;
- background-repeat: no-repeat;
- background-size: cover;
-}
-
-footer {
- background-color: #404040;
-}
\ No newline at end of file
diff --git a/tree-os.png b/tree-os.png
deleted file mode 100644
index e831494..0000000
--- a/tree-os.png
+++ /dev/null
Binary files differ