⭐ Moe-Counter Compatible Website Hit Counter Written in Gleam mayu.due.moe
hit-counter svg moe

style(index.html): Format file

fuwn.net 2e5928e7 34267d63

verified
+16 -5
+16 -5
index.html
··· 1 - <!DOCTYPE html> 1 + <!doctype html> 2 2 <html lang="en"> 3 3 <head> 4 4 <meta charset="UTF-8" /> ··· 14 14 body { 15 15 background-color: #0b1622; 16 16 color: rgb(159, 173, 189); 17 - font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, 18 - Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; 17 + font-family: 18 + Roboto, 19 + -apple-system, 20 + BlinkMacSystemFont, 21 + Segoe UI, 22 + Oxygen, 23 + Ubuntu, 24 + Cantarell, 25 + Fira Sans, 26 + Droid Sans, 27 + Helvetica Neue, 28 + sans-serif; 19 29 } 20 30 21 31 main { ··· 29 39 top: 50%; 30 40 left: 50%; 31 41 transform: translate(-50%, -50%); 32 - box-shadow: 0 0 8px -2px rgba(0, 0, 0, 0.1), 42 + box-shadow: 43 + 0 0 8px -2px rgba(0, 0, 0, 0.1), 33 44 0 6px 20px -3px rgba(0, 0, 0, 0.2); 34 45 } 35 46 ··· 259 270 260 271 <script> 261 272 const themeQueryParameter = new URLSearchParams( 262 - window.location.search 273 + window.location.search, 263 274 ).get("theme"); 264 275 const defaultConfiguration = { 265 276 id: new URLSearchParams(window.location.search).get("id") || "demo",