mirror of
https://github.com/t404owo/t404null.git
synced 2026-06-22 07:54:41 +00:00
Compare commits
10 Commits
main
...
98484fb5ab
| Author | SHA1 | Date | |
|---|---|---|---|
| 98484fb5ab | |||
| ea0a7990cd | |||
| a729ae793a | |||
| f29add1880 | |||
| 95ad432968 | |||
| 73476e1595 | |||
| 23367f7d2e | |||
| 73e96c9d69 | |||
| 58d8e7ec39 | |||
| 2d0a5c1ce5 |
@@ -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;}
|
||||
}
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user