10 Commits

Author SHA1 Message Date
t404owo 98484fb5ab Changed timing a bit for smoother animation. 2026-06-08 06:18:17 +00:00
t404owo ea0a7990cd navigation out for lesser Morphing 2026-06-08 06:15:00 +00:00
t404owo a729ae793a Added transition and startup animation. 2026-06-08 06:06:36 +00:00
t404owo f29add1880 Merge pull request #20 from t404owo/test
Create Test Branch testing site updates
2026-06-07 21:49:44 +02:00
t404owo 95ad432968 Merge branch 'glitch' into test 2026-06-07 21:49:28 +02:00
t404owo 73476e1595 Add eruda script for debugging in index.html 2025-12-07 18:36:57 +01:00
t404owo 23367f7d2e Change Supabase anon key to a publishable key
Updated Supabase anon key to a publishable key for security.
2025-12-07 18:35:03 +01:00
t404owo 73e96c9d69 Update index.js 2025-12-07 18:34:15 +01:00
t404owo 58d8e7ec39 Update index.html 2025-10-17 05:05:18 +02:00
t404owo 2d0a5c1ce5 Merge pull request #19 from t404owo/main
Update to unstable branch
2025-10-17 05:04:37 +02:00
2 changed files with 37 additions and 0 deletions
+36
View File
@@ -21,6 +21,13 @@ main {
margin-bottom: 0;
margin-top: 0;
min-height: calc(100vh - 10vh);
view-transition-name: main-page;
transition-property: opacity, display;
transition-duration: 1s;
opacity: 1;
@starting-style {
opacity: 0;
}
}
.main-page {
@@ -950,3 +957,32 @@ textfield {
}
}
}
@view-transition {
navigation: none;
animation: none;
}
::view-transition-group(main-page) {
animation-timing-function: ease-out;
}
::view-transition-old(main-page) {
animation-name: fade-out;
}
::view-transition-new(main-page) {
animation-name: fade-in;
}
@keyframes fade-out {
0% { opacity: 1;}
50% { opacity: 0;}
100% { opacity: 0;}
}
@keyframes fade-in {
0% { opacity: 0;}
50% { opacity: 0;}
100% { opacity: 1;}
}
+1
View File
@@ -18,6 +18,7 @@ import { createClient } from "https://cdn.jsdelivr.net/npm/@supabase/supabase-js
const supabaseUrl = "https://owbamcqdmqetrgcznxva.supabase.co";
const supabaseKey = "sb_publishable_b0fMYw5I1X97gQXJLVBnrA_-0L4qHGv";
//anon key, you cant access private stuffs or add hilarious stuffs w/ this...
//(unless sending me some malicious links but I delete your msg)
//the moment you notice you need an API endpoint.