From c1e55bfb1bb676bed39154dcbc41d41ae16f198f Mon Sep 17 00:00:00 2001 From: misomosi Date: Tue, 14 Apr 2026 12:05:46 -0400 Subject: [PATCH] Add HTML page and styles --- index.html | 40 ++++++++++++++++++++++++++++++++++++++++ styles.css | 28 ++++++++++++++++++++++++++++ 2 files changed, 68 insertions(+) create mode 100644 index.html create mode 100644 styles.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..12f7e17 --- /dev/null +++ b/index.html @@ -0,0 +1,40 @@ + + + +Welcome to nginx! + + + +
+

Misomosispi's Home Page!

+ +
+ + diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..3b4e927 --- /dev/null +++ b/styles.css @@ -0,0 +1,28 @@ +html { + color-scheme: light dark; +} +body { + width: 35em; + margin: 0 auto; + font-family: Tahoma, Verdana, Arial, sans-serif; +} +.vcard-parent { + align-items: center; + height: 100vh; +} +.vcard-header { + text-align: center; +} +.vcard-list { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + list-style: none; + gap: 20px; +} +.vcard-list > li > a > button { + width: 400px; + height: 100px; + padding: 20px; +} -- 2.49.1