Implement restricted-api for JS-driven auth calls, examples added (WIP!). Layout and styling simplified.

This commit is contained in:
2025-12-02 03:10:16 +00:00
parent 2dca6b1eec
commit a62e8ddf1e
18 changed files with 972 additions and 490 deletions
+22
View File
@@ -0,0 +1,22 @@
:root {
color-scheme: light dark;
}
body:has(iframe) {
overflow: hidden; /* prevent scrolling the page */
}
iframe {
/* Fullscreen overlay */
border: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9999;
/* Transparent background with a backdrop effect (optional) */
color-scheme: auto;
backdrop-filter: blur(4px) brightness(0.7);
-webkit-backdrop-filter: blur(4px) brightness(0.7);
}