diff --git a/htdocs/assets/_integrate.php b/htdocs/assets/_integrate.php
index d9ffb47..255ced0 100644
--- a/htdocs/assets/_integrate.php
+++ b/htdocs/assets/_integrate.php
@@ -3,8 +3,11 @@
+
-
\ No newline at end of file
+
+
+
\ No newline at end of file
diff --git a/htdocs/assets/extra-style.css b/htdocs/assets/extra-style.css
index f1511a8..31637c9 100644
--- a/htdocs/assets/extra-style.css
+++ b/htdocs/assets/extra-style.css
@@ -271,4 +271,24 @@ background: #38BDF8;
opacity: 1;
}
}
+}
+
+/* --- Tooltip Styling --- */
+
+.tippy-box[data-theme~='neosubhamoy'] {
+ background-color: #1b2536;
+ color: #FFFFFF;
+}
+
+.tippy-box[data-theme~='neosubhamoy'][data-placement^='top'] > .tippy-arrow::before {
+ border-top-color: #1b2536;
+}
+.tippy-box[data-theme~='neosubhamoy'][data-placement^='bottom'] > .tippy-arrow::before {
+ border-bottom-color: #1b2536;
+}
+.tippy-box[data-theme~='neosubhamoy'][data-placement^='left'] > .tippy-arrow::before {
+ border-left-color: #1b2536;
+}
+.tippy-box[data-theme~='neosubhamoy'][data-placement^='right'] > .tippy-arrow::before {
+ border-right-color: #1b2536;
}
\ No newline at end of file
diff --git a/htdocs/assets/js/tippy-config.js b/htdocs/assets/js/tippy-config.js
new file mode 100644
index 0000000..6610113
--- /dev/null
+++ b/htdocs/assets/js/tippy-config.js
@@ -0,0 +1,36 @@
+//--- controls tooltips and popover elements
+
+tippy('#searchbar', {
+ content: "ALT + K",
+ theme: 'neosubhamoy',
+ animation: 'shift-away',
+ delay: 500,
+ touch: false
+});
+
+tippy('#sharebutton', {
+ content: "ALT + L",
+ theme: 'neosubhamoy',
+ animation: 'shift-away',
+ delay: 500,
+ touch: false
+});
+
+tippy('#closebutton', {
+ content: "ESC",
+ placement: 'right',
+ theme: 'neosubhamoy',
+ animation: 'shift-away',
+ delay: 500,
+ touch: false
+});
+
+tippy('#shareclosebutton', {
+ content: "ESC",
+ placement: 'right',
+ theme: 'neosubhamoy',
+ animation: 'shift-away',
+ delay: 500,
+ touch: false
+});
+
diff --git a/htdocs/blog.php b/htdocs/blog.php
index 9e69093..5de71d7 100644
--- a/htdocs/blog.php
+++ b/htdocs/blog.php
@@ -34,5 +34,6 @@ require 'core/query_functions.php';
+