diff options
| author | Arslaan Pathan <[email protected]> | 2026-05-02 13:44:09 +1200 |
|---|---|---|
| committer | Arslaan Pathan <[email protected]> | 2026-05-02 13:44:09 +1200 |
| commit | 7a9998d6f0faed6f62541f8480d4301bcb4902f1 (patch) | |
| tree | 4e95c8a690d19c77ea656db406c44689169f0c43 | |
| parent | 3a176877da4e1b153d6e9c5101e2b46e7c04e302 (diff) | |
| download | brickmii-7a9998d6f0faed6f62541f8480d4301bcb4902f1.tar.xz brickmii-7a9998d6f0faed6f62541f8480d4301bcb4902f1.zip | |
stuff
| -rw-r--r-- | BrickMii.png | bin | 0 -> 82077 bytes | |||
| -rw-r--r-- | README.md | 3 | ||||
| -rw-r--r-- | index.html | 22 | ||||
| -rw-r--r-- | styles.css | 37 |
4 files changed, 62 insertions, 0 deletions
diff --git a/BrickMii.png b/BrickMii.png Binary files differnew file mode 100644 index 0000000..a5e8061 --- /dev/null +++ b/BrickMii.png @@ -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 @@ +<!DOCTYPE html> +<html> + <head> + <title>BrickMii</title> + <link rel="stylesheet" href="styles.css"/> + </head> + <body> + <div class="content"> + <img src="/BrickMii.png"/> + <p>The go-to guide for bricking your Wii</p> + <div class="cards"> + <div class="card"> + <h3>Method 1: KoreanKii</h3> + <p>This is a surefire way to brick your Wii quickly. As long as you have a non-Korean region Wii, it should work fine.</p> + <ul> + <li>Step 1: Homebrew your Wii - there are many guides for this, Google is your friend</li> + </ul> + </div> + </div> + </div> + </body> +</html> 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; +} |
