From ff02bc50695d8c19f497ffdd75ed9cf084173257 Mon Sep 17 00:00:00 2001
From: talha <talha@talhaamir.xyz>
Date: Sun, 11 Aug 2024 21:54:33 +0500
Subject: Added scanlines, updated pages names

---
 index.html                |  2 +-
 locations/identities.html | 44 +++++++++++++++++++++++++-------------------
 2 files changed, 26 insertions(+), 20 deletions(-)

diff --git a/index.html b/index.html
index bc26525..73bcf61 100644
--- a/index.html
+++ b/index.html
@@ -2,7 +2,7 @@
 <html>
 
 <head>
-  <title>talha's corner</title>
+  <title>noid v3</title>
 </head>
 
 <body>
diff --git a/locations/identities.html b/locations/identities.html
index dad9dab..efb77a0 100644
--- a/locations/identities.html
+++ b/locations/identities.html
@@ -2,7 +2,7 @@
 <html>
 
 <head>
-  <title>talha's corner</title>
+  <title>btlrprof v0.2.8</title>
 </head>
 <style>
   :root {
@@ -53,23 +53,6 @@
     margin-top: 15%;
   }
 
-  .profile-section {
-    display: flex;
-    flex-direction: column;
-    justify-content: space-between;
-    width: fit-content;
-    border: 5px double #8ae234;
-    background-color: rgba(85, 87, 83, 0.2);
-  }
-
-  .profile-section .heading {
-    padding: 5px 10px 5px 10px;
-    margin-bottom: 5px;
-    border-bottom: 2px dashed #8ae234;
-    font-size: 24px;
-    color: #32afff;
-  }
-
   .profile ul {
     list-style-type: none;
     padding: 5px 10px 5px 5px;
@@ -135,7 +118,7 @@
 
   .info-text {
     font-size: 22px;
-    color: #4af626;
+    color: var(--bright-green);
     top: 8%;
     left: 8%;
   }
@@ -176,9 +159,32 @@
     margin-top: 5%;
     max-width: 80%;
   }
+  .scanlines {
+    pointer-events: none;
+    position: fixed;
+    background: rgb(255,255,255);
+    background: linear-gradient(0deg, rgba(128,128,128,0.2) 0%, rgba(128,128,128,0.0) 100%);
+    width: -moz-available;
+    height: 30%;
+    top: -40%;
+    animation-name: scandown;
+    animation-duration: 10s;
+    animation-iteration-count: infinite;
+    animation-timing-function: linear;
+  }
+  @keyframes scandown {
+    0% {
+      top: -40%;
+    }
+    100% {
+      top: 100%;
+    }
+  }
+
 </style>
 
 <body class="flexv">
+  <div class="scanlines"></div>
   <div class="flexh sb fill-available top-ele">
     <div class="info-text neon-text">
       Searching recorded profiles... found 5 instances.<br />
-- 
cgit v1.2.3