From 7a9998d6f0faed6f62541f8480d4301bcb4902f1 Mon Sep 17 00:00:00 2001 From: Arslaan Pathan Date: Sat, 2 May 2026 13:44:09 +1200 Subject: stuff --- BrickMii.png | Bin 0 -> 82077 bytes README.md | 3 +++ index.html | 22 ++++++++++++++++++++++ styles.css | 37 +++++++++++++++++++++++++++++++++++++ 4 files changed, 62 insertions(+) create mode 100644 BrickMii.png create mode 100644 index.html create mode 100644 styles.css diff --git a/BrickMii.png b/BrickMii.png new file mode 100644 index 0000000..a5e8061 Binary files /dev/null and b/BrickMii.png differ diff --git a/README.md b/README.md index e69de29..4ffa923 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,3 @@ +# BrickMii + +joke website for the funny diff --git a/index.html b/index.html new file mode 100644 index 0000000..08701c2 --- /dev/null +++ b/index.html @@ -0,0 +1,22 @@ + + + + BrickMii + + + +
+ +

The go-to guide for bricking your Wii

+
+
+

Method 1: KoreanKii

+

This is a surefire way to brick your Wii quickly. As long as you have a non-Korean region Wii, it should work fine.

+
    +
  • Step 1: Homebrew your Wii - there are many guides for this, Google is your friend
  • +
+
+
+
+ + diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..621e1f9 --- /dev/null +++ b/styles.css @@ -0,0 +1,37 @@ +@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap'); + +.content { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + margin: auto; + width: 70vw; +} + +.content img { + width: 500px; +} + +.cards { + display: flex; + flex-direction: row; + justify-content: center; + margin: auto; + padding: 10px; +} + +.card { + display: flex; + flex-direction: column; + justify-content: center; + background-color: #de7e4b; + border-radius: 20px; + color: #ffffff; + padding: 10px; + max-width: 20vw; +} + +html, body { + font-family: 'DM Sans', 'Arial', sans-serif; +} -- cgit v1.2.3