diff --git a/faq.html b/faq.html index fb9db66d..fa2f9003 100644 --- a/faq.html +++ b/faq.html @@ -131,6 +131,25 @@ justify-content: center; gap: 8px; /* Adjust the gap between buttons */ } + .circle { + position: absolute; + width: 25px; + height: 25px; + border-radius: 50%; + pointer-events: none; + background: radial-gradient(circle, rgba(71, 240, 255, 0.3), rgba(0, 119, 255, 0.3)); + transition: transform 0.1s, left 0.1s, top 0.1s; + } + + .circle-container { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + pointer-events: none; + z-index: 9999; + } @@ -141,6 +160,78 @@
+ +