From 68cb7236df749e004b98321948e21bcd171dc774 Mon Sep 17 00:00:00 2001 From: Salvador Rivera de Franco Date: Wed, 12 Aug 2026 23:56:16 -0700 Subject: Index has header working now. More pending work --- index.html | 29 +++++++++++++++++++++++++++-- media/icon.png | Bin 0 -> 207967 bytes neuarriero.css | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 75 insertions(+), 2 deletions(-) create mode 100644 media/icon.png create mode 100644 neuarriero.css diff --git a/index.html b/index.html index 7fa21d0..a91341f 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,31 @@ - + + + + + + +
+ + + +
+

+ NuArriero +

+ Furry girls, computers, milshit, and art + +
+
+ + diff --git a/media/icon.png b/media/icon.png new file mode 100644 index 0000000..a8a3561 Binary files /dev/null and b/media/icon.png differ diff --git a/neuarriero.css b/neuarriero.css new file mode 100644 index 0000000..41db436 --- /dev/null +++ b/neuarriero.css @@ -0,0 +1,48 @@ +:root { + --main-bg-color: #4e0408; + --main-fg-color: #73232d; + +} + +body { + margin: 0; + font-family:Verdana, Geneva, Tahoma, sans-serif; + font-weight: bold; + +} + +header { + display: flex; + background:linear-gradient(to bottom, var(--main-bg-color) 0%, var(--main-fg-color) 100%); + box-shadow: rgba(0,0,0,.3) 0 3px 8px; + padding: 0.5rem; + color: #ffffff; + align-items: stretch; +} +header img { + object-fit: cover; + margin-right: 1rem; + height: 12rex; +} +nav { + margin-top: 1rex; + background-color: white; + justify-content: flex-end; + flex-wrap: wrap; +} +nav a { + margin-top: 0; + padding: 0 1rem; +} +header h1 { + margin: 0; + color: white; +} +header h1 a { + font-size: 120%; + color: white; + text-decoration: none; +} +hr { + color: white; +} -- cgit v1.2.3