diff --git a/css/style.css b/css/style.css index 83cf398..8bcaee9 100644 --- a/css/style.css +++ b/css/style.css @@ -98,6 +98,7 @@ div.social { .band { background-image: url(../images/social/band.png); } .soundcloud { background-image: url(../images/social/soundcloud.png); } .email { background-image: url(../images/social/email.png); } +.matrix { background-image: url(../images/social/matrix.png); } .tooltip { position: relative; diff --git a/images/social/matrix.png b/images/social/matrix.png new file mode 100644 index 0000000..616ada1 Binary files /dev/null and b/images/social/matrix.png differ diff --git a/index.html b/index.html index 4e90eff..98f6df3 100644 --- a/index.html +++ b/index.html @@ -29,6 +29,7 @@
LinkedIn
Facebook
Instagram
+
Matrix
Telegram
Git
GitHub
diff --git a/js/script.js b/js/script.js index 89ba658..2341f48 100644 --- a/js/script.js +++ b/js/script.js @@ -57,4 +57,8 @@ $(document).ready(function(){ $(".email").on( "click", function() { window.open(""); }); + + $(".matrix").on( "click", function() { + window.open("https://matrix.to/#/@alexanderzhirov:matrix.org"); + }); });