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 --- neuarriero.css | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 neuarriero.css (limited to 'neuarriero.css') 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