logo animation
authorPhiTux <redacted>
Mon, 15 Sep 2025 16:54:41 +0000 (18:54 +0200)
committerPhiTux <redacted>
Mon, 15 Sep 2025 16:54:41 +0000 (18:54 +0200)
frontend/src/routes/(authed)/+layout.svelte
frontend/src/routes/reauth/+page.svelte

index a7cac86023e6f2df29135ec41f56ca273ac00fee..6b070e5b63bc29eb2a8775613d915d39c10ba84b 100644 (file)
@@ -43,6 +43,7 @@
        import Admin from '$lib/settings/Admin.svelte';
        import { T, getTranslate, getTolgee } from '@tolgee/svelte';
        import github from '$lib/assets/GitHub-Logo.png';
+       import dailytxt from '$lib/assets/locked_heart_with_keyhole.svg';
        import donate from '$lib/assets/bmc-button.png';
 
        const { t } = getTranslate();
                                </div>
                        </div>
 
-                       <div class="col-lg-4 col-sm-2 col d-flex flex-row justify-content-center align-items-center">
-                               Center-LOGO
+                       <div class=" col-lg-4 col-sm-2 col d-flex flex-row justify-content-center align-items-center">
+                               <div class="full-logo d-flex align-items-center">
+                                       <img src={dailytxt} alt="" height="38px" />
+                                       <span class="dailytxt ms-2">DailyTxT</span>
+                               </div>
                        </div>
 
                        <div class="col-lg-4 col-sm-5 col pe-0 d-flex flex-row justify-content-end">
 </div>
 
 <style>
+       .dailytxt {
+               color: #f57c00;
+               font-size: 1.8rem;
+               font-weight: 500;
+               line-height: 1rem;
+               position: relative;
+               text-decoration: none;
+               transition: color 0.3s ease;
+       }
+
+       .dailytxt::after {
+               content: '';
+               position: absolute;
+               bottom: -9px;
+               left: 50%;
+               width: 0;
+               height: 2px;
+               background-color: #0d6efd;
+               transform: translateX(-50%);
+               transition: width 0.3s ease;
+               z-index: -1;
+       }
+
+       .full-logo:hover > .dailytxt::after {
+               width: 100%;
+       }
+
+       img {
+               transition: 0.3s ease;
+       }
+
+       .full-logo:hover > img {
+               transform: scale(1.15);
+               filter: drop-shadow(0px 0px 4px #4891ff);
+       }
+
        .tagAlert {
                margin-bottom: 0 !important;
        }
index 202eb9ad979bdbfeb056359d6d1240a0a2ffc606..df86d0fb30392fef06efe7dca54bb2364cf55c21 100644 (file)
        }
 
        .container-fluid {
-               /* background: linear-gradient(135deg, #899cf1 0%, #a24b4b 100%); */
                min-height: 100vh;
        }
 
git clone https://git.99rst.org/PROJECT