this repo has no descr,ription vt3e.cat
at develop 42 lines 925 B view raw
1<!doctype html> 2<html lang="en"> 3 <head> 4 <meta charset="UTF-8" /> 5 <link rel="icon" type="image/svg+xml" href="/public/avatar/64x64.webp" /> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 7 <title>willow!</title> 8 9 <script> 10 const path = window.location.pathname; 11 window.location.href = `/?path=${encodeURIComponent(path)}`; 12 </script> 13 </head> 14 <body> 15 <div id="app"> 16 <div class="container"></div> 17 </div> 18 19 <style> 20 * { 21 box-sizing: border-box; 22 margin: 0; 23 padding: 0; 24 font-family: Arial, sans-serif; 25 } 26 27 @media (prefers-color-scheme: dark) { 28 body { 29 background-color: #121212; 30 color: #fff; 31 } 32 } 33 34 @media (prefers-color-scheme: light) { 35 body { 36 background-color: #fff; 37 color: #000; 38 } 39 } 40 </style> 41 </body> 42</html>