diff --git a/index.html b/index.html index 49c77f0..eeb29a7 100644 --- a/index.html +++ b/index.html @@ -45,7 +45,7 @@
- +

@@ -94,9 +94,8 @@ diff --git a/res/blobheart.png b/res/blobheart.png new file mode 100644 index 0000000..ae94412 Binary files /dev/null and b/res/blobheart.png differ diff --git a/res/heart.png b/res/heart.png new file mode 100644 index 0000000..695bb39 Binary files /dev/null and b/res/heart.png differ diff --git a/scripts/main.js b/scripts/main.js index 1111b11..491030d 100644 --- a/scripts/main.js +++ b/scripts/main.js @@ -2,4 +2,8 @@ $(function() { $('.navbar-collapse a').on('click', function() { $('.navbar-collapse').collapse('hide'); }); + + $('#blobheart').on('click', function() { + $('#navbar-image').attr('src', 'res/heart.png'); + }); }); \ No newline at end of file diff --git a/scripts/projects.js b/scripts/projects.js index 010aaa2..7fec9cf 100644 --- a/scripts/projects.js +++ b/scripts/projects.js @@ -60,7 +60,7 @@ const projects = [{ let p = ''; for (project of projects) { - p += '
'; + p += '
'; p += '
'; p += ''; @@ -70,7 +70,7 @@ for (project of projects) { let links = project['links']; for (let name in links) { - p += '' + name + ''; + p += '' + name + ''; } p += '
'; diff --git a/scripts/social.js b/scripts/social.js index 5df8f09..9433f2e 100644 --- a/scripts/social.js +++ b/scripts/social.js @@ -50,7 +50,7 @@ const socials = [{ let s = ''; for (social of socials) { - s += '' diff --git a/style.css b/style.css index 3d753d8..a8e8a01 100644 --- a/style.css +++ b/style.css @@ -75,12 +75,8 @@ a.anchor.home { .footer { bottom: 0; - width: 100%; line-height: 30px; background-color: #f5f5f5; -} - -.footer-content { text-align: center; padding: 15px; } @@ -89,4 +85,10 @@ a.anchor.home { padding: 15px; font-weight: bold; font-size: 125%; +} + +#blobheart { + float: right; + width: 30px; + height: 30px; } \ No newline at end of file