diff --git a/dark_style.css b/dark_style.css
index 96e614b..d7b5aba 100644
--- a/dark_style.css
+++ b/dark_style.css
@@ -49,7 +49,8 @@
background: rgb(0, 79, 42);
}
- #photos, #settings {
+ #photos,
+ #settings {
background: rgb(36, 36, 36);
background: linear-gradient(0deg, rgb(23, 23, 23) 0%, rgb(63, 63, 63) 100%);
}
@@ -64,7 +65,15 @@
background: linear-gradient(0deg, rgb(133, 60, 0) 0%, rgb(117, 0, 0) 100%);
}
- #facebook, #twitter, #google, #pq, #spotify, #soundcloud, #band, #apple {
+ #facebook,
+ #twitter,
+ #google,
+ #pq,
+ #spotify,
+ #soundcloud,
+ #band,
+ #apple,
+ #audio_tri {
background: rgb(25, 25, 25);
background: linear-gradient(
0deg,
@@ -106,4 +115,21 @@
);
}
+ #newave {
+ background: rgb(129, 135, 149);
+ background: linear-gradient(
+ 318deg,
+ rgba(129, 135, 149, 1) 0%,
+ rgba(0, 44, 65, 1) 100%
+ );
+ }
+
+ #skrem {
+ background: rgb(114, 136, 114);
+ background: radial-gradient(
+ circle,
+ rgba(114, 136, 114, 1) 0%,
+ rgba(41, 61, 41, 1) 100%
+ );
+ }
}
diff --git a/index.html b/index.html
index 1cc2262..07dff09 100644
--- a/index.html
+++ b/index.html
@@ -92,33 +92,33 @@
@@ -194,7 +194,7 @@
/>
-
+
-
+
-
+
-
+
{
+ location.href = "https://www.instagram.com/newave_oceans_official/";
+};
+
+//Enter = onClick event
+newave.addEventListener("keypress", function (event) {
+ if (event.key === "Enter") {
+ event.preventDefault();
+ newave.click();
+ }
+});
+
+skrem.onclick = () => {
+ location.href = "https://www.instagram.com/skremzy/";
+};
+
+//Enter = onClick event
+skrem.addEventListener("keypress", function (event) {
+ if (event.key === "Enter") {
+ event.preventDefault();
+ skrem.click();
+ }
+});
+
+audio_tri.onclick = () => {
+ location.href = "https://www.instagram.com/audio_phobia/";
+};
+
+//Enter = onClick event
+audio_tri.addEventListener("keypress", function (event) {
+ if (event.key === "Enter") {
+ event.preventDefault();
+ audio_tri.click();
+ }
+});
diff --git a/styles.css b/styles.css
index 3692056..544539c 100644
--- a/styles.css
+++ b/styles.css
@@ -498,6 +498,35 @@ img {
width: 47%;
}
+#newave {
+ background: rgb(185, 236, 247);
+ background: linear-gradient(
+ 318deg,
+ rgba(185, 236, 247, 1) 0%,
+ rgba(12, 125, 212, 1) 100%
+ );
+}
+
+#newave_img {
+ width: 50%;
+}
+
+#skrem {
+ background: #5bdfa8;
+}
+
+#skrem_img {
+ width: 39%;
+}
+
+#audio_tri {
+ background: #000000;
+}
+
+#audio_tri_img {
+ width: 47%;
+}
+
/* hover */
.app_icon:hover {
cursor: pointer;