From 4a84a1809b485fe3fe2d34d7712d9196f8c5ae44 Mon Sep 17 00:00:00 2001 From: ChenKaiLiuG <141424456+ChenKaiLiuG@users.noreply.github.com> Date: Tue, 15 Apr 2025 18:08:11 +0800 Subject: [PATCH] Create style.css --- css/style.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 css/style.css diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..991aecd --- /dev/null +++ b/css/style.css @@ -0,0 +1,20 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +html, body { + height: 100%; + overflow: hidden; +} + +#bg-video { + position: fixed; + top: 0; + left: 0; + min-width: 100%; + min-height: 100%; + object-fit: cover; + z-index: -1; +}