diff --git a/index.html b/index.html index 278f5c4..66ed571 100644 --- a/index.html +++ b/index.html @@ -44,10 +44,17 @@
-

- -

Welcome to my little website! I'm Ellpeck, a student and hobbyist coder and writer from Germany.

-

Look around this website to find out more about my projects and other places you can find me!

+
+
+ +
+
+

+ +

Welcome to my little website! I'm Ellpeck, a student and hobbyist coder and writer from Germany.

+

Look around this website to find out more about my projects and other places you can find me!

+
+
diff --git a/res/me.png b/res/me.png new file mode 100644 index 0000000..7bbdae7 Binary files /dev/null and b/res/me.png differ diff --git a/res/projects/aa.png b/res/projects/aa.png new file mode 100644 index 0000000..d717e63 Binary files /dev/null and b/res/projects/aa.png differ diff --git a/res/projects/crossword.png b/res/projects/crossword.png new file mode 100644 index 0000000..3d3ca4f Binary files /dev/null and b/res/projects/crossword.png differ diff --git a/res/projects/poem.png b/res/projects/poem.png new file mode 100644 index 0000000..a8d8cb1 Binary files /dev/null and b/res/projects/poem.png differ diff --git a/res/projects/rb.png b/res/projects/rb.png new file mode 100644 index 0000000..706910d Binary files /dev/null and b/res/projects/rb.png differ diff --git a/scripts/main.js b/scripts/main.js index b5380b6..1111b11 100644 --- a/scripts/main.js +++ b/scripts/main.js @@ -1,5 +1,5 @@ $(function() { - $('.navbar-collapse a').click(function() { - $(".navbar-collapse").collapse('hide'); + $('.navbar-collapse a').on('click', function() { + $('.navbar-collapse').collapse('hide'); }); }); \ No newline at end of file diff --git a/scripts/projects.js b/scripts/projects.js index fba4023..010aaa2 100644 --- a/scripts/projects.js +++ b/scripts/projects.js @@ -5,7 +5,8 @@ const projects = [{ 'Website': 'https://rockbottom.ellpeck.de', 'API on GitHub': 'https://github.com/RockBottomGame/API' }, - 'status': 'In Development' + 'status': 'In Development', + 'icon': 'rb' }, { 'name': 'Actually Additions', @@ -14,7 +15,8 @@ const projects = [{ 'CurseForge page': 'https://www.ellpeck.de/actadd', 'Online manual': 'https://www.ellpeck.de/actaddmanual/' }, - 'status': 'Handed off' + 'status': 'Handed off', + 'icon': 'aa' }, { 'name': 'Sudoku', @@ -23,7 +25,8 @@ const projects = [{ 'Play it here': 'https://ellpeck.de/sudoku', 'Check the source': 'https://github.com/Ellpeck/Sudoku' }, - 'status': 'Finished' + 'status': 'Finished', + 'icon': 'sudoku' }, { 'name': 'Memory', @@ -32,7 +35,8 @@ const projects = [{ 'Play it here': 'https://ellpeck.de/memory', 'Check the source': 'https://github.com/Ellpeck/Memory' }, - 'status': 'Finished' + 'status': 'Finished', + 'icon': 'memory' }, { 'name': 'Crossword Puzzle Generator', @@ -40,7 +44,8 @@ const projects = [{ 'links': { 'Play it here': 'https://www.ellpeck.de/crossword/' }, - 'status': 'On hold' + 'status': 'On hold', + 'icon': 'crossword' }, { 'name': 'Poem Generator', @@ -48,7 +53,8 @@ const projects = [{ 'links': { 'Check it out here': 'https://www.ellpeck.de/poemgen/' }, - 'status': 'Cancelled' + 'status': 'Cancelled', + 'icon': 'poem' } ]; @@ -56,7 +62,7 @@ let p = ''; for (project of projects) { p += '
'; p += '
'; - p += ''; + p += ''; p += '

' + project['name'] + '

'; p += '

' + project['desc'] + '

'; diff --git a/style.css b/style.css index 68d865a..b9d1ee0 100644 --- a/style.css +++ b/style.css @@ -6,6 +6,7 @@ body { .main { margin-top: 20px; + padding-bottom: 200px; } .project {