diff options
| author | Fuwn <[email protected]> | 2025-04-29 11:27:44 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-04-29 11:27:44 +0000 |
| commit | 2e5928e70a7b3433647a6f4e772fadd068928af7 (patch) | |
| tree | 18841209c7246ae7bdd8254838228d8de42f3592 | |
| parent | feat(frontend): Make value absence easier to spot (diff) | |
| download | mayu-2e5928e70a7b3433647a6f4e772fadd068928af7.tar.xz mayu-2e5928e70a7b3433647a6f4e772fadd068928af7.zip | |
style(index.html): Format file
| -rw-r--r-- | index.html | 21 |
1 files changed, 16 insertions, 5 deletions
@@ -1,4 +1,4 @@ -<!DOCTYPE html> +<!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> @@ -14,8 +14,18 @@ body { background-color: #0b1622; color: rgb(159, 173, 189); - font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, - Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; + font-family: + Roboto, + -apple-system, + BlinkMacSystemFont, + Segoe UI, + Oxygen, + Ubuntu, + Cantarell, + Fira Sans, + Droid Sans, + Helvetica Neue, + sans-serif; } main { @@ -29,7 +39,8 @@ top: 50%; left: 50%; transform: translate(-50%, -50%); - box-shadow: 0 0 8px -2px rgba(0, 0, 0, 0.1), + box-shadow: + 0 0 8px -2px rgba(0, 0, 0, 0.1), 0 6px 20px -3px rgba(0, 0, 0, 0.2); } @@ -259,7 +270,7 @@ <script> const themeQueryParameter = new URLSearchParams( - window.location.search + window.location.search, ).get("theme"); const defaultConfiguration = { id: new URLSearchParams(window.location.search).get("id") || "demo", |